mirror of
https://github.com/fluencelabs/redis
synced 2025-06-12 16:51:22 +00:00
Max limit to 10k clients removed, this implements feature request on issue #194
This commit is contained in:
@ -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;
|
||||
|
Reference in New Issue
Block a user