From 5ee5d493c22737856101612cc865607d092d78bf Mon Sep 17 00:00:00 2001 From: leak Date: Tue, 22 Jul 2014 18:47:39 +0200 Subject: [PATCH] Increased default thread pool size as it now handles more than signals and remote access --- src/server/worldserver/worldserver.conf.dist | 11 ++++++++--- 1 file changed, 8 insertions(+), 3 deletions(-) diff --git a/src/server/worldserver/worldserver.conf.dist b/src/server/worldserver/worldserver.conf.dist index 60a6537d0b..20660c979f 100644 --- a/src/server/worldserver/worldserver.conf.dist +++ b/src/server/worldserver/worldserver.conf.dist @@ -146,10 +146,15 @@ BindIP = "0.0.0.0" # # ThreadPool # Description: Number of threads to be used for the global thread pool -# The thread pool is currently used for the signal handler and remote access -# Default: 1 +# The thread pool is currently used for: +# - Signal handling +# - Remote access +# - Database keep-alive ping +# - Core freeze check +# - World socket networking +# Default: 2 -ThreadPool = 1 +ThreadPool = 2 # ###################################################################################################