more workers helps in some cases without hurting others. apparently

This commit is contained in:
Adam D. Ruppe 2020-09-27 21:58:57 -04:00
parent 2872ea3980
commit ddcc4074e5
1 changed files with 2 additions and 1 deletions

3
cgi.d
View File

@ -4472,7 +4472,7 @@ class ListeningConnectionManager {
if(epoll_ctl(epfd, EPOLL_CTL_ADD, listener.handle, &ev) == -1)
throw new Exception("epoll_ctl " ~ to!string(errno));
WorkerThread[] threads = new WorkerThread[](totalCPUs + 1);
WorkerThread[] threads = new WorkerThread[](totalCPUs * 2 + 1);
foreach(i, ref thread; threads) {
thread = new WorkerThread(this, handler, cast(int) i);
thread.start();
@ -9851,6 +9851,7 @@ private struct StackBuffer {
this(int a) {
buffer = initial[];
position = 0;
}
void add(in char[] what) {