tweak config defaults

This commit is contained in:
Dylan K. Taylor 2025-03-12 01:06:01 +00:00
parent 2589fcb31d
commit fc072b05d6
No known key found for this signature in database
GPG Key ID: 8927471A91CAFD3D

View File

@ -94,13 +94,13 @@ network:
#How many backlog ticks to budget for. 200 allows for a 10-second network lag spike, or a small number of complex
#packets.
session-budget-ticks: 100
session-budget-ticks: 200
#How much to top up each session's read operations budget per tick. Recommended to set this to about 2x the
#average number of read operations per tick per session.
#Exceeding this value won't cause any action to be taken. However, consistently exceeding it will cause the
#session's budget to be depleted, resulting in action being taken.
session-budget-per-tick: 250
session-budget-per-tick: 100
#Whether to collect stats for debugging. This might impact performance.
#See NetworkSession::dumpDecodeCostStats() if you want to visualize the stats yourself.