Repeated and persistent lag/delay when displaying search window

Found a bug in "Everything"? report it here
Post Reply
chivo
Posts: 10
Joined: Sat Dec 07, 2019 11:21 pm

Repeated and persistent lag/delay when displaying search window

Post by chivo »

Until today, I was using 1403a alpha build, and I always had an active file filter that filtered out system files and anything located on the Windows drive (C:), so I could search among files on other drives. Whenever I opened the software window using a shortcut, the searchable files would appear immediately, with the filter applied, and with no delay or lag.

However, after updating today to the beta build (version 1413), I noticed that every time I open the software window — with the filter to exclude system files, folders, and the entire Windows drive already set — there is a 1-second lag or pause each time the window is invoked. During this pause, nothing is displayed, and the status bar shows the word "querying." After the 1-second delay, the file list appears and becomes ready for searching. This happens repeatedly, exactly the same way every single time I invoke the window with the shortcut.

I would like to know what is causing this lag and delay, whether this is a known issue, and if there is any solution ?
Last edited by chivo on Thu May 28, 2026 9:24 am, edited 1 time in total.
void
Developer
Posts: 19863
Joined: Fri Oct 16, 2009 11:31 pm

Re: Repeated and persistent lag/delay when displaying search window

Post by void »

Please send a debug log:
  • In Everything, from the Tools menu, under the Debug submenu, click Start Debug Logging...
  • Close the Everything window.
  • Reopen the Everything window.
  • From the Tools menu, under the Debug submenu, click Stop Debug Logging...
    This will open your %TEMP%\Everything Debug Log.txt in your text editor.
  • Please upload this file in a bug report.
chivo
Posts: 10
Joined: Sat Dec 07, 2019 11:21 pm

Re: Repeated and persistent lag/delay when displaying search window

Post by chivo »

void wrote: Thu May 28, 2026 8:35 am Please send a debug log:
  • In Everything, from the Tools menu, under the Debug submenu, click Start Debug Logging...
  • Close the Everything window.
  • Reopen the Everything window.
  • From the Tools menu, under the Debug submenu, click Stop Debug Logging...
    This will open your %TEMP%\Everything Debug Log.txt in your text editor.
  • Please upload this file in a bug report.
I checked, and the last version I was using before this was 1403a. It wasn't the latest alpha build either — I had updated version 1403a to the latest alpha build (1409a). Currently, I have two versions of the software installed and running simultaneously on my system: both version 1409a (alpha) and version 1413 (beta). Both exhibit the same delay when displaying and loading the window and the search list. Both builds have the delay. I have uploaded the debug files for both versions.
void
Developer
Posts: 19863
Joined: Fri Oct 16, 2009 11:31 pm

Re: Repeated and persistent lag/delay when displaying search window

Post by void »

Thank you for the logs.

*.\\$recycle.bin\*


This search is expensive and will likely match nothing.
What are you trying to match here?

Please replace your old filter search:

Code: Select all

!C:\ !path:$recycle.bin\* !path:$recycle.bin\* !path:*.\\$recycle.bin\*
with:

Code: Select all

!C:\ !whole:ancestor-name:$recycle.bin
ancestor-name:
therube
Posts: 5719
Joined: Thu Sep 03, 2009 6:48 pm

Re: Repeated and persistent lag/delay when displaying search window

Post by therube »

And,
!path:$recycle.bin\*
was included in there twice.

Does Everything recognize that & disregard the second instance of it?


(I know on [multiple file] renames, in the set of files to be renamed, it does not rename a name that does not need to be renamed - like when you have differing case of file with otherwise the same name.)


Oh, & in my $recycle.bin excludes, I typically use
\$recycle.bin
as that seems to be sufficient.
void
Developer
Posts: 19863
Joined: Fri Oct 16, 2009 11:31 pm

Re: Repeated and persistent lag/delay when displaying search window

Post by void »

Does Everything recognize that & disregard the second instance of it?
Normally Everything will remove duplicated terms.
In this case it doesn't because they are NOT-ed.
I'll look into optimizing duplicated NOT-ed terms out and I'm working on optimizing $recycle.bin\** => whole:ancestor-name:$recycle.bin


Oh, & in my $recycle.bin excludes, I typically use
\$recycle.bin
as that seems to be sufficient.
This is fine, the recommend (and most efficient way) is to just exclude
$recycle.bin
tuska
Posts: 1382
Joined: Thu Jul 13, 2017 9:14 am

Re: Repeated and persistent lag/delay when displaying search window

Post by tuska »

void wrote: Fri May 29, 2026 2:24 am This is fine, the recommend (and most efficient way) is to just exclude
$recycle.bin
I'm using the settings from this post:
?:\$RECYCLE.BIN

void wrote: Mon Feb 06, 2023 11:08 am The following filter will match the recycle bin folder on any drive:
?:\$recycle.bin

?:\$recycle.bin matches c:\$recycle.bin, d:\$recycle.bin, e:\$recycle.bin, etc...
Post Reply