Search found 4 matches

by finneon
Thu Feb 23, 2023 6:44 pm
Forum: Support
Topic: Is it expected that search speed slightly degrades over time?
Replies: 2
Views: 942

Is it expected that search speed slightly degrades over time?

I noticed that the search speed of similar queries becomes a bit slower when Everything has been running for a long time (multiple days or even weeks).

Is this a bug or to be expected? Maybe applying thousands of file changes to the database harms cache locality or something like that?
by finneon
Wed Mar 23, 2022 11:00 am
Forum: Development, plugins and third party software
Topic: Question about the fast sort code
Replies: 5
Views: 9515

Re: Question about the fast sort code

When you change the sort order: Everything will 'mark' the current results. Iterate over every item in the new sort index. If an item is 'marked', add it to the new result list. Thank you! That explains it. It seems like that's indeed what we did in our solution, we just marked the items from list ...
by finneon
Wed Mar 23, 2022 10:40 am
Forum: Development, plugins and third party software
Topic: Question about the fast sort code
Replies: 5
Views: 9515

Re: Question about the fast sort code

Thank you for the detailed reply! Everything doesn't sort at all with fast sorts. Instead, Everything uses the fast sort index when searching for results. Ah, that's clever. But how does the code handle this case. We have: Name sort index: A, B, C Path sort index: B, C, A Size sort index: C, B, A Th...
by finneon
Tue Mar 22, 2022 5:28 pm
Forum: Development, plugins and third party software
Topic: Question about the fast sort code
Replies: 5
Views: 9515

Question about the fast sort code

Hello David, a couple months ago we had a task in our programming class where we needed to find a solution for a specific problem: Given are two lists A and B. A is already sorted and B contains only elements found in list A, but not necessarily all and they're not sorted. Also all elements are uniq...