From ce5142656e160667e23046eaa4ae37584bcccd92 Mon Sep 17 00:00:00 2001 From: William Casarin Date: Sat, 3 Aug 2024 11:33:40 -0700 Subject: [PATCH] bump ingester threads from 2 to 4 Signed-off-by: William Casarin --- src/app.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/app.rs b/src/app.rs index 5bc6b36..6ce91b2 100644 --- a/src/app.rs +++ b/src/app.rs @@ -680,7 +680,7 @@ impl Damus { let _ = std::fs::create_dir_all(imgcache_dir.clone()); let mut config = Config::new(); - config.set_ingester_threads(2); + config.set_ingester_threads(4); let mut account_manager = AccountManager::new( // TODO: should pull this from settings