Revert "Stream documents"

This commit is contained in:
Tamo 2024-05-20 15:09:45 +02:00 committed by GitHub
parent 59ecf1cea7
commit 7e251b43d4
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
16 changed files with 91 additions and 151 deletions

View file

@ -49,7 +49,7 @@ pub fn open_auth_store_env(path: &Path) -> milli::heed::Result<milli::heed::Env>
let mut options = EnvOpenOptions::new();
options.map_size(AUTH_STORE_SIZE); // 1GB
options.max_dbs(2);
unsafe { options.open(path) }
options.open(path)
}
impl HeedAuthStore {