From be0efd57e5504c3e8a55aa59f0dbeb885c36d6ec 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 50fad13..9d2d035 100644 --- a/src/app.rs +++ b/src/app.rs @@ -804,7 +804,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