From 44f3f23d481bc88f1f9398b714eb87e34b9fc33d Mon Sep 17 00:00:00 2001 From: Paul Masurel Date: Wed, 3 Aug 2016 15:42:10 +0900 Subject: [PATCH] Changed block size to 16K --- src/store/writer.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/store/writer.rs b/src/store/writer.rs index 5a968c2bd..281393c7b 100644 --- a/src/store/writer.rs +++ b/src/store/writer.rs @@ -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,