Increased default thread pool size as it now handles more than signals and remote access

This commit is contained in:
leak
2014-07-22 18:48:03 +02:00
parent 30ea34f5be
commit 5ee5d493c2
+8 -3
View File
@@ -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
#
###################################################################################################