Max limit to 10k clients removed, this implements feature request on issue #194

This commit is contained in:
antirez
2011-12-15 11:42:40 +01:00
parent 503d87a818
commit e074416be4
6 changed files with 84 additions and 53 deletions

View File

@ -490,7 +490,7 @@ int main(int argc, const char **argv) {
config.numclients = 50;
config.requests = 10000;
config.liveclients = 0;
config.el = aeCreateEventLoop();
config.el = aeCreateEventLoop(1024*10);
aeCreateTimeEvent(config.el,1,showThroughput,NULL,NULL);
config.keepalive = 1;
config.datasize = 3;