Replace Set
operations with "smart iterators"
#189
Labels
query
Related to executing queries given an index
Set
operations with "smart iterators"
#189
Currently
IndexSearcher
works by iterating over theQuery
, gathering docs into aSet
for eachQuery
node, and combining thoseSet
s.We want to move to an iterator based approach, similar to what
PositionalIter
currently does, but where query nodes form nodes in a tree of iterators working together to progressively find matches.https://youtu.be/IKyhqpgyQpw?si=uXrQFK5co4oYid3K
The text was updated successfully, but these errors were encountered: