Skip to content

Bump protosearch, fixing query perf#582

Merged
valencik merged 1 commit intomainfrom
bump-proto
Feb 19, 2026
Merged

Bump protosearch, fixing query perf#582
valencik merged 1 commit intomainfrom
bump-proto

Conversation

@valencik
Copy link
Member

Previously we were running into performance issues for "large" prefix queries.
When I user types fs2 S, perhaps on their way to typing fs2 Stream, we rewrite this query to fs2 (S OR S*).
This means we end up with something like fs2 OR S OR ....every term in the whole collection starting with S..., this can be quite large.

One approach to addressing this, that we likely should still do, is to debounce search on input.
However, the javascript to do this was escaping me.
So I opted to improve the performance of fs2 S upstream by 135x for now 😆 😬

@valencik valencik self-assigned this Feb 19, 2026
@valencik
Copy link
Member Author

Created #583 to cover the still needed debouncing.

@valencik valencik merged commit 74d126a into main Feb 19, 2026
1 check passed
@valencik valencik deleted the bump-proto branch February 19, 2026 02:22
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

None yet

Projects

None yet

Development

Successfully merging this pull request may close these issues.

1 participant

Comments