15 lines
721 B
INI
15 lines
721 B
INI
# ---------------------------------------------------------------------------
|
|
# Threadpool Settings
|
|
# ---------------------------------------------------------------------------
|
|
|
|
# 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 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 |