From 3734ccae24c3615db81923a90e48935096c81240 Mon Sep 17 00:00:00 2001 From: Arvid Norberg Date: Thu, 17 Mar 2011 14:14:29 +0000 Subject: [PATCH] lower disk queue size for high-performance-seed preset --- src/session.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/session.cpp b/src/session.cpp index 098206c6d..7e6d697e2 100644 --- a/src/session.cpp +++ b/src/session.cpp @@ -227,7 +227,7 @@ namespace libtorrent // the max number of bytes pending write before we throttle // download rate - set.max_queued_disk_bytes = 300 * 1024 * 1024; + set.max_queued_disk_bytes = 100 * 1024 * 1024; // flush write cache based on largest contiguous block set.disk_cache_algorithm = session_settings::largest_contiguous;