Remove auto network thread thing

This commit is contained in:
2025-08-18 14:08:30 -04:00
parent 78e3845130
commit 8e00e636b7
3 changed files with 5 additions and 11 deletions

View File

@@ -19,7 +19,7 @@ struct ServerConfig {
/// Number of accept threads for handling incoming connections
int accept_threads = 1;
/// Number of network I/O threads for epoll processing
int network_threads = 0; // 0 means use hardware_concurrency
int network_threads = 1;
/// Event batch size for epoll processing
int event_batch_size = 32;
};