extract exact word docids

This commit is contained in:
ad hoc
2022-03-24 17:00:29 +01:00
parent 5451c64d5d
commit 8d46a5b0b5
5 changed files with 50 additions and 7 deletions

View File

@ -226,6 +226,7 @@ where
};
let stop_words = self.index.stop_words(self.wtxn)?;
let exact_attributes = self.index.exact_attributes_ids(self.wtxn)?;
// Run extraction pipeline in parallel.
pool.install(|| {
@ -255,6 +256,7 @@ where
geo_field_id,
stop_words,
self.indexer_config.max_positions_per_attributes,
exact_attributes,
)
});