Changed block size to 16K

This commit is contained in:
Paul Masurel
2016-08-03 15:42:10 +09:00
committed by GitHub
parent 12534e55a3
commit 44f3f23d48

View File

@@ -9,7 +9,7 @@ use lz4;
use super::StoreReader;
use super::OffsetIndex;
const BLOCK_SIZE: usize = 131_072;
const BLOCK_SIZE: usize = 16_384;
pub struct StoreWriter {
doc: DocId,