From ba78558adf283389ee80840c6e63876c1aba4fbd Mon Sep 17 00:00:00 2001 From: abbycin Date: Wed, 17 Jun 2026 08:39:52 +0800 Subject: [PATCH] adjust concurrent_write --- src/main.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/main.rs b/src/main.rs index 58a64ee..6425d6c 100644 --- a/src/main.rs +++ b/src/main.rs @@ -631,7 +631,7 @@ fn main() { let mut opt = Options::new(path); opt.sync_on_write = durability_mode == DurabilityMode::Durable; - opt.concurrent_write = 8; + opt.concurrent_write = 16; opt.lru_capacity = 1 << 30; opt.blob_handle_cache_capacity = 256; opt.data_handle_cache_capacity = 256;