Probably going to merge accept and network threads

This commit is contained in:
2025-08-20 16:24:09 -04:00
parent 24a1157f0d
commit 7e28e6503d
6 changed files with 166 additions and 72 deletions

View File

@@ -7,9 +7,9 @@ port = 8080
# Maximum request size in bytes (for 413 Content Too Large responses)
max_request_size_bytes = 1048576 # 1MB
# Number of accept threads for handling incoming connections
accept_threads = 2
accept_threads = 4
# Number of network I/O threads for epoll processing
network_threads = 8
network_threads = 4
# Event batch size for epoll processing
event_batch_size = 32