rename the update-file-store to file-store since it can store any kind of file

This commit is contained in:
Tamo 2022-09-13 19:32:31 +02:00 committed by Clément Renault
parent 76597fc382
commit 48138c21a9
No known key found for this signature in database
GPG key ID: 92ADA4E935E71FA4
3 changed files with 17 additions and 17 deletions

View file

@ -8,7 +8,7 @@ mod utils;
use batch::Batch;
pub use error::Error;
use file_store::UpdateFileStore;
use file_store::FileStore;
use index::Index;
pub use task::Task;
use task::{Kind, KindWithContent, Status};
@ -57,7 +57,7 @@ pub struct IndexScheduler {
/// The list of tasks currently processing.
processing_tasks: Arc<RwLock<RoaringBitmap>>,
file_store: UpdateFileStore,
file_store: FileStore,
/// The LMDB environment which the DBs are associated with.
env: Env,