Sorry if this has been reported before...
v1.4.0.713b locks up (freezes) when unzipping or transferring files. Previous version did not display this behavior.
For instance, I am now unrar-ing (unzipping) a 1GB file (file size is just an example). I now cannot use Everything because it is frozen (locked up). I can only search using Everything again only after the file has finished unzipping. Same behaviour occurs when transferring files from hard drive to hard drive. Everything is frozen until the file has completed being moved or copied.
Previous versions did not behave this way....
thanks much
1.4.0.713b freezes when unzipping or transferring files
Re: 1.4.0.713b freezes when unzipping or transferring files
How are you unzipping/transferring files?
Right-click Drag dropping? Ctrl + V?
Right-click Drag dropping? Ctrl + V?
Re: 1.4.0.713b freezes when unzipping or transferring files
I am using WinRAR to unzip files.
I use drag/dropping to move files.
I am back to using stable version 1.3.4.686 and it is working fine. It is version 1.4.0.713b that has the problem as described.
Thanks
I use drag/dropping to move files.
I am back to using stable version 1.3.4.686 and it is working fine. It is version 1.4.0.713b that has the problem as described.
Thanks
Re: 1.4.0.713b freezes when unzipping or transferring files
Do you have a USB drive in your system?
Is it indexed by Everything?
Is it indexed by Everything?
Re: 1.4.0.713b freezes when unzipping or transferring files
Yes, a few powered external USB 3.0 drives and yes they are definitely indexed by Everything
Re: 1.4.0.713b freezes when unzipping or transferring files
Everything is trying to read file size or date modified information from a USB drive. Unfortunately, access to USB drives is serialized, causing Everything to hang.
Disabling file size and date modified indexing in Everything 1.4 should give the same behavior as in Everything 1.3:
Disabling file size and date modified indexing in Everything 1.4 should give the same behavior as in Everything 1.3:
- In Everything, from the Tools menu, click Options.
- Click the Indexes tab.
- Uncheck Index file size.
- Uncheck Index folder size.
- Uncheck Index date created.
- Uncheck Index date modified.
- Uncheck Index date accessed.
- Uncheck Index attributes.
- Click OK.
Re: 1.4.0.713b freezes when unzipping or transferring files
Explain?access to USB drives is serialized
And in this case, when you say "USB", your are speaking of a "Flash" type drive (rather then a mechanical HDD connected through a USB connection).
Re: 1.4.0.713b freezes when unzipping or transferring files
I've found access to USB flash drives and external USB HDDs can only be done one after the other (never at the same time like internal HDDs), and they do not share this access fairly.access to USB drives is serialized
If you are writing a 1GB file to a USB drive, you will be unable to read from the usb drive until the write is complete.
Everything is trying to read file sizes, and the date modified of changed files on a USB drive while another program is writing to the USB drive, causing Everything to hang until the write is complete.
What I need to do is only access file size cache if possible, avoid reading file size information from USB drives or only read it when the USB drive is idle (I'm currently experimenting with this).
Re: 1.4.0.713b freezes when unzipping or transferring files
Thanks for explaining this problem I was having with the 1.4 beta... I guess I will stick with the older stable 1.3 as it seems to do all I need... and does it very well
Thanks again
Thanks again
Re: 1.4.0.713b freezes when unzipping or transferring files
This helped a little, but it is still not good enough.What I need to do is only access file size cache if possible, avoid reading file size information from USB drives or only read it when the USB drive is idle (I'm currently experimenting with this).
Now I'm trying to offload I/O access to another thread to avoid blocking in the UI/worker thread...