This repository was archived by the owner on Apr 2, 2026. It is now read-only.
Replies: 1 comment
|
OR queries are actually not supported yet, so the query would just be treated as a large intersection query of the terms There is some deduplication of the terms so we try to limit the number of term lookups in each field. For instance, if we have the query |
0 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Uh oh!
There was an error while loading. Please reload this page.
I'm constructing long search queries joined with OR... There's a big chance that some of these terms are redundant because the search engine automatically searches for variations. Is there a way to know which search terms are redundant ? For example, for the search query "database" OR "list" OR "Collection" OR "Repository" OR " library", is there a way to shorten this query by removing the redundant items? Or at least identifying the redundant ones and then I can remove them manually?
All reactions