Move the RefCellExt trait in a dedicated module

This commit is contained in:
Clément Renault 2024-11-07 11:36:09 +01:00
parent 1477b81d38
commit 0e4e9e866a
No known key found for this signature in database
GPG key ID: F250A4C4E3AE5F5F
10 changed files with 67 additions and 61 deletions

View file

@ -13,8 +13,9 @@ use crate::facet::value_encoding::f64_into_bytes;
use crate::update::new::extract::DocidsExtractor;
use crate::update::new::indexer::document_changes::{
extract, DocumentChangeContext, DocumentChanges, Extractor, FullySend, IndexingContext,
Progress, RefCellExt, ThreadLocal,
Progress, ThreadLocal,
};
use crate::update::new::ref_cell_ext::RefCellExt as _;
use crate::update::new::DocumentChange;
use crate::update::GrenadParameters;
use crate::{DocumentId, FieldId, Index, Result, MAX_FACET_VALUE_LENGTH};