ThreadPool revert and path change.

This commit is contained in:
MobiusDevelopment
2021-10-27 00:58:25 +00:00
parent 4e9f507f33
commit a0ee3599f5
3743 changed files with 11356 additions and 9800 deletions

View File

@@ -2,10 +2,14 @@
# Threadpool Settings
# ---------------------------------------------------------------------------
# Specifies how many threads will be in the scheduled pool.
# Default: 160
ScheduledThreadPoolCount = 160
# Determines the amount of scheduled thread pools. If set to -1, the server will decide the amount depending on the available processors.
ScheduledThreadPoolCount = -1
# Specifies how many threads will be in the single instant pool.
# Default: 120
InstantThreadPoolCount = 120
# Specifies how many threads will be in a single scheduled pool.
ThreadsPerScheduledThreadPool = 4
# Determines the amount of instant thread pools. If set to -1, the server will decide the amount depending on the available processors.
InstantThreadPoolCount = -1
# Specifies how many threads will be in a single instant pool.
ThreadsPerInstantThreadPool = 2