mirror of
https://github.com/meilisearch/MeiliSearch
synced 2025-07-03 20:07:09 +02:00
Refactor Document indexing process (searchables)
**Changes:** The searchable database extraction is now relying on the AttributePatterns and FieldIdMapWithMetadata to match the field to extract. Remove the SearchableExtractor trait to make the code less complex. **Impact:** - Document Addition/modification searchable indexing - Document deletion searchable indexing
This commit is contained in:
parent
95bccaf5f5
commit
ae8d453868
5 changed files with 239 additions and 263 deletions
|
@ -199,7 +199,7 @@ where
|
|||
let span = tracing::trace_span!(target: "indexing::documents::extract", "word_pair_proximity_docids");
|
||||
let _entered = span.enter();
|
||||
|
||||
<WordPairProximityDocidsExtractor as DocidsExtractor>::run_extraction(
|
||||
WordPairProximityDocidsExtractor::run_extraction(
|
||||
document_changes,
|
||||
indexing_context,
|
||||
extractor_allocs,
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue