mirror of
https://github.com/meilisearch/meilisearch.git
synced 2024-11-22 10:07:40 +08:00
Document the geo point extractor
This commit is contained in:
parent
5727e00374
commit
61d0615253
@ -60,9 +60,11 @@ pub struct GeoExtractorData<'extractor> {
|
|||||||
/// point being updated, we first put it in the deleted and then in the inserted.
|
/// point being updated, we first put it in the deleted and then in the inserted.
|
||||||
removed: bumpalo::collections::Vec<'extractor, ExtractedGeoPoint>,
|
removed: bumpalo::collections::Vec<'extractor, ExtractedGeoPoint>,
|
||||||
inserted: bumpalo::collections::Vec<'extractor, ExtractedGeoPoint>,
|
inserted: bumpalo::collections::Vec<'extractor, ExtractedGeoPoint>,
|
||||||
/// TODO Do the doc
|
/// Contains a packed list of `ExtractedGeoPoint` of the inserted geo points
|
||||||
|
/// data structures if we have spilled to disk.
|
||||||
spilled_removed: Option<BufWriter<File>>,
|
spilled_removed: Option<BufWriter<File>>,
|
||||||
/// TODO Do the doc
|
/// Contains a packed list of `ExtractedGeoPoint` of the inserted geo points
|
||||||
|
/// data structures if we have spilled to disk.
|
||||||
spilled_inserted: Option<BufWriter<File>>,
|
spilled_inserted: Option<BufWriter<File>>,
|
||||||
}
|
}
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user