Server: bulk load: avoid explicit compaction

This might happen in the background while the server answers queries, no need to block everything for that.
pull/190/head
Tpt 3 years ago
parent 54c6f2c19f
commit f9db6bcdca
  1. 1
      server/src/main.rs

@ -110,7 +110,6 @@ pub fn main() -> std::io::Result<()> {
for handle in handles { for handle in handles {
handle.join().unwrap()?; handle.join().unwrap()?;
} }
store.optimize()?;
Ok(()) Ok(())
} }
Command::Serve { bind } => { Command::Serve { bind } => {

Loading…
Cancel
Save