Trait tantivy::query::Query [] [src]

pub trait Query: Debug {
    fn as_any(&self) -> &Any;
fn weight(&self, searcher: &Searcher) -> Result<Box<Weight>>; fn search(
        &self,
        searcher: &Searcher,
        collector: &mut Collector
    ) -> Result<TimerTree> { ... } }

The Query trait defines a set of documents and a scoring method for those documents.

The Query trait is in charge of defining :

When performing a search, these documents will then be pushed to a Collector, which will in turn be in charge of deciding what to do with them.

Concretely, this scored docset is represented by the Scorer trait.

Because our index is actually split into segments, the query does not actually directly creates DocSet object. Instead, the query creates a Weight object for a given searcher.

The weight object, in turn, makes it possible to create a scorer for a specific SegmentReader.

So to sum it up :

When implementing a new type of Query, it is normal to implement a dedicated Query, Weight and Scorer.

Required Methods

Used to make it possible to cast Box into a specific type. This is mostly useful for unit tests.

Create the weight associated to a query.

See Weight.

Provided Methods

Search works as follows :

First the weight object associated to the query is created.

Then, the query loops over the segments and for each segment :

  • setup the collector and informs it that the segment being processed has changed.
  • creates a Scorer object associated for this segment
  • iterate throw the matched documents and push them to the collector.

Implementors