Test new indexer

This commit is contained in:
Clémentine Urquizar 2021-08-16 13:43:06 +02:00 committed by Clément Renault
parent 14f9056349
commit 24e84d7ca1
No known key found for this signature in database
GPG key ID: 92ADA4E935E71FA4
3 changed files with 64 additions and 8 deletions

View file

@ -50,7 +50,7 @@ main_error = "0.1.0"
meilisearch-error = { path = "../meilisearch-error" }
meilisearch-tokenizer = { git = "https://github.com/meilisearch/tokenizer.git", tag = "v0.2.5" }
memmap = "0.7.0"
milli = { git = "https://github.com/meilisearch/milli.git", tag = "v0.11.0" }
milli = { git = "https://github.com/meilisearch/milli.git", branch = "plug-new-indexer" }
mime = "0.3.16"
num_cpus = "1.13.0"
once_cell = "1.5.2"

View file

@ -1,8 +1,8 @@
use std::fs::File;
use crate::index::Index;
use milli::update::UpdateBuilder;
use milli::CompressionType;
use milli::update::UpdateBuilder;
use rayon::ThreadPool;
use crate::index_controller::UpdateMeta;