You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
quickwit-oss/tantivy#2120 implements TermSetQuery::query_terms. Before, we relied on it not being implemented to load directly the whole sstable and not have to handle duplicate work (whole table + some terms from the same table).
After, we'll have to do some deduplication to not incure useless calls to the storage.
We can also become smarter than what we currently do: if only a few terms are in the set, we could load only those instead of the whole table. We could also detect common prefix (all terms are from the same json field for instance), and load only a range of the sstable... there are many optimizations this could open.
The text was updated successfully, but these errors were encountered:
quickwit-oss/tantivy#2120 implements
TermSetQuery::query_terms
. Before, we relied on it not being implemented to load directly the whole sstable and not have to handle duplicate work (whole table + some terms from the same table).After, we'll have to do some deduplication to not incure useless calls to the storage.
We can also become smarter than what we currently do: if only a few terms are in the set, we could load only those instead of the whole table. We could also detect common prefix (all terms are from the same json field for instance), and load only a range of the sstable... there are many optimizations this could open.
The text was updated successfully, but these errors were encountered: