From f9db6bcdcaf923791a67b7f216c8e4df8fcff011 Mon Sep 17 00:00:00 2001 From: Tpt Date: Sat, 12 Feb 2022 20:00:35 +0100 Subject: [PATCH] Server: bulk load: avoid explicit compaction This might happen in the background while the server answers queries, no need to block everything for that. --- server/src/main.rs | 1 - 1 file changed, 1 deletion(-) diff --git a/server/src/main.rs b/server/src/main.rs index db728038..113d6a62 100644 --- a/server/src/main.rs +++ b/server/src/main.rs @@ -110,7 +110,6 @@ pub fn main() -> std::io::Result<()> { for handle in handles { handle.join().unwrap()?; } - store.optimize()?; Ok(()) } Command::Serve { bind } => {