]> git.saurik.com Git - redis.git/blame - src/redis-benchmark.c
Use multi-bulk protocol by default in redis-benchmark
[redis.git] / src / redis-benchmark.c
CommitLineData
ed9b544e 1/* Redis benchmark utility.
2 *
12d090d2 3 * Copyright (c) 2009-2010, Salvatore Sanfilippo <antirez at gmail dot com>
ed9b544e 4 * All rights reserved.
5 *
6 * Redistribution and use in source and binary forms, with or without
7 * modification, are permitted provided that the following conditions are met:
8 *
9 * * Redistributions of source code must retain the above copyright notice,
10 * this list of conditions and the following disclaimer.
11 * * Redistributions in binary form must reproduce the above copyright
12 * notice, this list of conditions and the following disclaimer in the
13 * documentation and/or other materials provided with the distribution.
14 * * Neither the name of Redis nor the names of its contributors may be used
15 * to endorse or promote products derived from this software without
16 * specific prior written permission.
17 *
18 * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
19 * AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
20 * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
21 * ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE
22 * LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
23 * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
24 * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
25 * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
26 * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
27 * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
28 * POSSIBILITY OF SUCH DAMAGE.
29 */
30
5f5b9840 31#include "fmacros.h"
32
ed9b544e 33#include <stdio.h>
34#include <string.h>
35#include <stdlib.h>
36#include <unistd.h>
37#include <errno.h>
38#include <sys/time.h>
39#include <signal.h>
40#include <assert.h>
41
42#include "ae.h"
ec8f0667 43#include "hiredis.h"
ed9b544e 44#include "sds.h"
45#include "adlist.h"
46#include "zmalloc.h"
47
ed9b544e 48#define CLIENT_CONNECTING 0
49#define CLIENT_SENDQUERY 1
50#define CLIENT_READREPLY 2
51
ed9b544e 52#define REDIS_NOTUSED(V) ((void) V)
53
54static struct config {
58cd7103 55 int debug;
ed9b544e 56 int numclients;
57 int requests;
58 int liveclients;
59 int donerequests;
60 int keysize;
61 int datasize;
57172ffb 62 int randomkeys;
ecfaf6da 63 int randomkeys_keyspacelen;
ed9b544e 64 aeEventLoop *el;
65 char *hostip;
66 int hostport;
c61e6925 67 char *hostsocket;
ed9b544e 68 int keepalive;
69 long long start;
70 long long totlatency;
8146e316 71 long long *latency;
ed0dd554 72 char *title;
ed9b544e 73 list *clients;
74 int quiet;
75 int loop;
266373b2 76 int idlemode;
ed9b544e 77} config;
78
79typedef struct _client {
ec8f0667 80 redisContext *context;
ed9b544e 81 int state;
ed9b544e 82 sds obuf;
1cd3c1e0 83 char *randptr;
8146e316 84 unsigned int written; /* bytes of 'obuf' already written */
ed9b544e 85 int replytype;
8146e316
PN
86 long long start; /* start time of a request */
87 long long latency; /* request latency */
ed9b544e 88} *client;
89
90/* Prototypes */
91static void writeHandler(aeEventLoop *el, int fd, void *privdata, int mask);
92static void createMissingClients(client c);
93
94/* Implementation */
8146e316
PN
95static long long ustime(void) {
96 struct timeval tv;
97 long long ust;
98
99 gettimeofday(&tv, NULL);
100 ust = ((long)tv.tv_sec)*1000000;
101 ust += tv.tv_usec;
102 return ust;
103}
104
ed9b544e 105static long long mstime(void) {
106 struct timeval tv;
107 long long mst;
108
109 gettimeofday(&tv, NULL);
110 mst = ((long)tv.tv_sec)*1000;
111 mst += tv.tv_usec/1000;
112 return mst;
113}
114
115static void freeClient(client c) {
116 listNode *ln;
ec8f0667
PN
117 aeDeleteFileEvent(config.el,c->context->fd,AE_WRITABLE);
118 aeDeleteFileEvent(config.el,c->context->fd,AE_READABLE);
119 redisFree(c->context);
ed9b544e 120 sdsfree(c->obuf);
ed9b544e 121 zfree(c);
122 config.liveclients--;
123 ln = listSearchKey(config.clients,c);
124 assert(ln != NULL);
125 listDelNode(config.clients,ln);
126}
127
128static void freeAllClients(void) {
129 listNode *ln = config.clients->head, *next;
130
131 while(ln) {
132 next = ln->next;
133 freeClient(ln->value);
134 ln = next;
135 }
136}
137
138static void resetClient(client c) {
ec8f0667
PN
139 aeDeleteFileEvent(config.el,c->context->fd,AE_WRITABLE);
140 aeDeleteFileEvent(config.el,c->context->fd,AE_READABLE);
141 aeCreateFileEvent(config.el,c->context->fd,AE_WRITABLE,writeHandler,c);
ed9b544e 142 c->written = 0;
143 c->state = CLIENT_SENDQUERY;
8146e316
PN
144 c->start = ustime();
145 c->latency = -1;
ed9b544e 146}
147
ecfaf6da 148static void randomizeClientKey(client c) {
1cd3c1e0 149 char *p, *newline;
ecfaf6da 150 char buf[32];
151 long r;
152
1cd3c1e0
PN
153 if (c->randptr == NULL) return;
154
155 /* Check if we have to randomize (only once per connection) */
156 if (c->randptr == (void*)-1) {
157 p = strstr(c->obuf,":rand:");
158 if (!p) {
159 c->randptr = NULL;
160 return;
161 } else {
162 newline = strstr(p,"\r\n");
163 assert(newline-(p+6) == 12); /* 12 chars for randomness */
164 c->randptr = p+6;
165 }
166 }
167
168 /* Set random number in output buffer */
ecfaf6da 169 r = random() % config.randomkeys_keyspacelen;
1cd3c1e0
PN
170 snprintf(buf,sizeof(buf),"%012ld",r);
171 memcpy(c->randptr,buf,12);
ecfaf6da 172}
173
ed9b544e 174static void clientDone(client c) {
ed9b544e 175 if (config.donerequests == config.requests) {
176 freeClient(c);
177 aeStop(config.el);
178 return;
179 }
180 if (config.keepalive) {
181 resetClient(c);
ecfaf6da 182 if (config.randomkeys) randomizeClientKey(c);
ed9b544e 183 } else {
184 config.liveclients--;
185 createMissingClients(c);
186 config.liveclients++;
187 freeClient(c);
188 }
189}
190
ec8f0667 191static void readHandler(aeEventLoop *el, int fd, void *privdata, int mask) {
ed9b544e 192 client c = privdata;
ec8f0667 193 void *reply = NULL;
ed9b544e 194 REDIS_NOTUSED(el);
195 REDIS_NOTUSED(fd);
196 REDIS_NOTUSED(mask);
197
8146e316
PN
198 /* Calculate latency only for the first read event. This means that the
199 * server already sent the reply and we need to parse it. Parsing overhead
200 * is not part of the latency, so calculate it only once, here. */
201 if (c->latency < 0) c->latency = ustime()-(c->start);
202
ec8f0667
PN
203 if (redisBufferRead(c->context) != REDIS_OK) {
204 fprintf(stderr,"Error: %s\n",c->context->errstr);
205 exit(1);
206 } else {
207 if (redisGetReply(c->context,&reply) != REDIS_OK) {
208 fprintf(stderr,"Error: %s\n",c->context->errstr);
209 exit(1);
2fd30952 210 }
8146e316 211 if (reply != NULL) {
53f1d817
PN
212 if (reply == (void*)REDIS_REPLY_ERROR) {
213 fprintf(stderr,"Unexpected error reply, exiting...\n");
214 exit(1);
215 }
216
8146e316
PN
217 if (config.donerequests < config.requests)
218 config.latency[config.donerequests++] = c->latency;
ec8f0667 219 clientDone(c);
8146e316 220 }
2fd30952 221 }
ed9b544e 222}
223
ec8f0667 224static void writeHandler(aeEventLoop *el, int fd, void *privdata, int mask) {
ed9b544e 225 client c = privdata;
226 REDIS_NOTUSED(el);
227 REDIS_NOTUSED(fd);
228 REDIS_NOTUSED(mask);
229
230 if (c->state == CLIENT_CONNECTING) {
231 c->state = CLIENT_SENDQUERY;
8146e316
PN
232 c->start = ustime();
233 c->latency = -1;
ed9b544e 234 }
235 if (sdslen(c->obuf) > c->written) {
236 void *ptr = c->obuf+c->written;
ec8f0667 237 int nwritten = write(c->context->fd,ptr,sdslen(c->obuf)-c->written);
ed9b544e 238 if (nwritten == -1) {
61c47ecd 239 if (errno != EPIPE)
240 fprintf(stderr, "Writing to socket: %s\n", strerror(errno));
ed9b544e 241 freeClient(c);
242 return;
243 }
244 c->written += nwritten;
245 if (sdslen(c->obuf) == c->written) {
ec8f0667
PN
246 aeDeleteFileEvent(config.el,c->context->fd,AE_WRITABLE);
247 aeCreateFileEvent(config.el,c->context->fd,AE_READABLE,readHandler,c);
ed9b544e 248 c->state = CLIENT_READREPLY;
249 }
250 }
251}
252
ec8f0667 253static client createClient(int replytype) {
ed9b544e 254 client c = zmalloc(sizeof(struct _client));
ec8f0667
PN
255 if (config.hostsocket == NULL) {
256 c->context = redisConnectNonBlock(config.hostip,config.hostport);
257 } else {
258 c->context = redisConnectUnixNonBlock(config.hostsocket);
ed9b544e 259 }
ec8f0667
PN
260 if (c->context->err) {
261 fprintf(stderr,"Could not connect to Redis at ");
262 if (config.hostsocket == NULL)
263 fprintf(stderr,"%s:%d: %s\n",config.hostip,config.hostport,c->context->errstr);
264 else
265 fprintf(stderr,"%s: %s\n",config.hostsocket,c->context->errstr);
266 exit(1);
267 }
268 c->replytype = replytype;
269 c->state = CLIENT_CONNECTING;
1cd3c1e0
PN
270 c->obuf = NULL;
271 c->randptr = (void*)-1;
ed9b544e 272 c->written = 0;
ec8f0667
PN
273 redisSetReplyObjectFunctions(c->context,NULL);
274 aeCreateFileEvent(config.el,c->context->fd,AE_WRITABLE,writeHandler,c);
ed9b544e 275 listAddNodeTail(config.clients,c);
ec8f0667 276 config.liveclients++;
ed9b544e 277 return c;
278}
279
280static void createMissingClients(client c) {
281 while(config.liveclients < config.numclients) {
ec8f0667 282 client new = createClient(c->replytype);
ed9b544e 283 new->obuf = sdsdup(c->obuf);
ecfaf6da 284 if (config.randomkeys) randomizeClientKey(c);
ed9b544e 285 }
286}
287
8146e316
PN
288static int compareLatency(const void *a, const void *b) {
289 return (*(long long*)a)-(*(long long*)b);
290}
291
ed0dd554 292static void showLatencyReport(void) {
8146e316 293 int i, curlat = 0;
ed9b544e 294 float perc, reqpersec;
295
296 reqpersec = (float)config.donerequests/((float)config.totlatency/1000);
297 if (!config.quiet) {
ed0dd554 298 printf("====== %s ======\n", config.title);
ed9b544e 299 printf(" %d requests completed in %.2f seconds\n", config.donerequests,
300 (float)config.totlatency/1000);
301 printf(" %d parallel clients\n", config.numclients);
302 printf(" %d bytes payload\n", config.datasize);
303 printf(" keep alive: %d\n", config.keepalive);
304 printf("\n");
8146e316
PN
305
306 qsort(config.latency,config.requests,sizeof(long long),compareLatency);
307 for (i = 0; i < config.requests; i++) {
308 if (config.latency[i]/1000 != curlat || i == (config.requests-1)) {
309 curlat = config.latency[i]/1000;
310 perc = ((float)(i+1)*100)/config.requests;
311 printf("%.2f%% <= %d milliseconds\n", perc, curlat);
ed9b544e 312 }
313 }
314 printf("%.2f requests per second\n\n", reqpersec);
315 } else {
ed0dd554 316 printf("%s: %.2f requests per second\n", config.title, reqpersec);
ed9b544e 317 }
318}
319
ed0dd554 320static void prepareForBenchmark(char *title) {
ed0dd554 321 config.title = title;
ed9b544e 322 config.start = mstime();
323 config.donerequests = 0;
324}
325
ed0dd554 326static void endBenchmark(void) {
ed9b544e 327 config.totlatency = mstime()-config.start;
ed0dd554 328 showLatencyReport();
ed9b544e 329 freeAllClients();
330}
331
332void parseOptions(int argc, char **argv) {
333 int i;
334
335 for (i = 1; i < argc; i++) {
336 int lastarg = i==argc-1;
337
338 if (!strcmp(argv[i],"-c") && !lastarg) {
339 config.numclients = atoi(argv[i+1]);
340 i++;
341 } else if (!strcmp(argv[i],"-n") && !lastarg) {
342 config.requests = atoi(argv[i+1]);
343 i++;
344 } else if (!strcmp(argv[i],"-k") && !lastarg) {
345 config.keepalive = atoi(argv[i+1]);
346 i++;
347 } else if (!strcmp(argv[i],"-h") && !lastarg) {
ec8f0667 348 config.hostip = argv[i+1];
ed9b544e 349 i++;
350 } else if (!strcmp(argv[i],"-p") && !lastarg) {
351 config.hostport = atoi(argv[i+1]);
352 i++;
c61e6925
PN
353 } else if (!strcmp(argv[i],"-s") && !lastarg) {
354 config.hostsocket = argv[i+1];
355 i++;
ed9b544e 356 } else if (!strcmp(argv[i],"-d") && !lastarg) {
357 config.datasize = atoi(argv[i+1]);
358 i++;
359 if (config.datasize < 1) config.datasize=1;
360 if (config.datasize > 1024*1024) config.datasize = 1024*1024;
ecfaf6da 361 } else if (!strcmp(argv[i],"-r") && !lastarg) {
57172ffb 362 config.randomkeys = 1;
ecfaf6da 363 config.randomkeys_keyspacelen = atoi(argv[i+1]);
364 if (config.randomkeys_keyspacelen < 0)
365 config.randomkeys_keyspacelen = 0;
366 i++;
ed9b544e 367 } else if (!strcmp(argv[i],"-q")) {
368 config.quiet = 1;
369 } else if (!strcmp(argv[i],"-l")) {
370 config.loop = 1;
58cd7103 371 } else if (!strcmp(argv[i],"-D")) {
372 config.debug = 1;
266373b2 373 } else if (!strcmp(argv[i],"-I")) {
374 config.idlemode = 1;
ed9b544e 375 } else {
376 printf("Wrong option '%s' or option argument missing\n\n",argv[i]);
377 printf("Usage: redis-benchmark [-h <host>] [-p <port>] [-c <clients>] [-n <requests]> [-k <boolean>]\n\n");
378 printf(" -h <hostname> Server hostname (default 127.0.0.1)\n");
c61e6925
PN
379 printf(" -p <port> Server port (default 6379)\n");
380 printf(" -s <socket> Server socket (overrides host and port)\n");
ed9b544e 381 printf(" -c <clients> Number of parallel connections (default 50)\n");
382 printf(" -n <requests> Total number of requests (default 10000)\n");
383 printf(" -d <size> Data size of SET/GET value in bytes (default 2)\n");
384 printf(" -k <boolean> 1=keep alive 0=reconnect (default 1)\n");
b1ad58ed 385 printf(" -r <keyspacelen> Use random keys for SET/GET/INCR, random values for SADD\n");
ecfaf6da 386 printf(" Using this option the benchmark will get/set keys\n");
387 printf(" in the form mykey_rand000000012456 instead of constant\n");
388 printf(" keys, the <keyspacelen> argument determines the max\n");
389 printf(" number of values for the random number. For instance\n");
390 printf(" if set to 10 only rand000000000000 - rand000000000009\n");
391 printf(" range will be allowed.\n");
ed9b544e 392 printf(" -q Quiet. Just show query/sec values\n");
393 printf(" -l Loop. Run the tests forever\n");
266373b2 394 printf(" -I Idle mode. Just open N idle connections and wait.\n");
58cd7103 395 printf(" -D Debug mode. more verbose.\n");
ed9b544e 396 exit(1);
397 }
398 }
399}
400
ed0dd554
PN
401int showThroughput(struct aeEventLoop *eventLoop, long long id, void *clientData) {
402 REDIS_NOTUSED(eventLoop);
403 REDIS_NOTUSED(id);
404 REDIS_NOTUSED(clientData);
405
406 float dt = (float)(mstime()-config.start)/1000.0;
407 float rps = (float)config.donerequests/dt;
408 printf("%s: %.2f\r", config.title, rps);
409 fflush(stdout);
410 return 250; /* every 250ms */
411}
412
ed9b544e 413int main(int argc, char **argv) {
174df6fe 414 int i;
ed9b544e 415 client c;
416
417 signal(SIGHUP, SIG_IGN);
418 signal(SIGPIPE, SIG_IGN);
419
58cd7103 420 config.debug = 0;
ed9b544e 421 config.numclients = 50;
422 config.requests = 10000;
423 config.liveclients = 0;
424 config.el = aeCreateEventLoop();
ed0dd554 425 aeCreateTimeEvent(config.el,1,showThroughput,NULL,NULL);
ed9b544e 426 config.keepalive = 1;
427 config.donerequests = 0;
428 config.datasize = 3;
57172ffb 429 config.randomkeys = 0;
ecfaf6da 430 config.randomkeys_keyspacelen = 0;
ed9b544e 431 config.quiet = 0;
432 config.loop = 0;
266373b2 433 config.idlemode = 0;
ed9b544e 434 config.latency = NULL;
435 config.clients = listCreate();
ed9b544e 436 config.hostip = "127.0.0.1";
437 config.hostport = 6379;
c61e6925 438 config.hostsocket = NULL;
ed9b544e 439
440 parseOptions(argc,argv);
8146e316 441 config.latency = zmalloc(sizeof(long long)*config.requests);
ed9b544e 442
443 if (config.keepalive == 0) {
c3251497 444 printf("WARNING: keepalive disabled, you probably need 'echo 1 > /proc/sys/net/ipv4/tcp_tw_reuse' for Linux and 'sudo sysctl -w net.inet.tcp.msl=1000' for Mac OS X in order to use a lot of clients/requests\n");
ed9b544e 445 }
446
266373b2 447 if (config.idlemode) {
448 printf("Creating %d idle connections and waiting forever (Ctrl+C when done)\n", config.numclients);
ed0dd554 449 prepareForBenchmark("IDLE");
ec8f0667 450 c = createClient(0); /* will never receive a reply */
266373b2 451 c->obuf = sdsempty();
266373b2 452 createMissingClients(c);
453 aeMain(config.el);
454 /* and will wait for every */
455 }
456
ed9b544e 457 do {
1cd3c1e0
PN
458 char *data, *cmd;
459 int len;
460
461 data = zmalloc(config.datasize+1);
174df6fe
PN
462 memset(data,'x',config.datasize);
463 data[config.datasize] = '\0';
464
1cd3c1e0 465 prepareForBenchmark("PING (inline)");
ec8f0667 466 c = createClient(REDIS_REPLY_STATUS);
1cd3c1e0 467 c->obuf = sdscat(sdsempty(),"PING\r\n");
6766f45e 468 createMissingClients(c);
469 aeMain(config.el);
ed0dd554 470 endBenchmark();
6766f45e 471
1cd3c1e0 472 prepareForBenchmark("PING");
ec8f0667 473 c = createClient(REDIS_REPLY_STATUS);
1cd3c1e0
PN
474 len = redisFormatCommand(&cmd,"PING");
475 c->obuf = sdsnewlen(cmd,len);
476 free(cmd);
6766f45e 477 createMissingClients(c);
478 aeMain(config.el);
ed0dd554 479 endBenchmark();
6766f45e 480
1cd3c1e0 481 prepareForBenchmark("MSET (10 keys)");
ec8f0667 482 c = createClient(REDIS_REPLY_ARRAY);
1cd3c1e0
PN
483 {
484 const char *argv[11];
485 argv[0] = "MSET";
486 for (i = 1; i < 11; i++)
487 argv[i] = data;
488 len = redisFormatCommandArgv(&cmd,11,argv,NULL);
489 c->obuf = sdsnewlen(cmd,len);
490 free(cmd);
491 }
ea5b7092
PN
492 createMissingClients(c);
493 aeMain(config.el);
494 endBenchmark();
495
ed0dd554 496 prepareForBenchmark("SET");
ec8f0667 497 c = createClient(REDIS_REPLY_STATUS);
1cd3c1e0
PN
498 len = redisFormatCommand(&cmd,"SET foo:rand:000000000000 %s",data);
499 c->obuf = sdsnewlen(cmd,len);
500 free(cmd);
ed9b544e 501 createMissingClients(c);
502 aeMain(config.el);
ed0dd554 503 endBenchmark();
ed9b544e 504
ed0dd554 505 prepareForBenchmark("GET");
ec8f0667 506 c = createClient(REDIS_REPLY_STRING);
1cd3c1e0
PN
507 len = redisFormatCommand(&cmd,"GET foo:rand:000000000000");
508 c->obuf = sdsnewlen(cmd,len);
509 free(cmd);
ed9b544e 510 createMissingClients(c);
511 aeMain(config.el);
ed0dd554 512 endBenchmark();
ed9b544e 513
ed0dd554 514 prepareForBenchmark("INCR");
ec8f0667 515 c = createClient(REDIS_REPLY_INTEGER);
1cd3c1e0
PN
516 len = redisFormatCommand(&cmd,"INCR counter:rand:000000000000");
517 c->obuf = sdsnewlen(cmd,len);
518 free(cmd);
ed9b544e 519 createMissingClients(c);
520 aeMain(config.el);
ed0dd554 521 endBenchmark();
ed9b544e 522
ed0dd554 523 prepareForBenchmark("LPUSH");
ec8f0667 524 c = createClient(REDIS_REPLY_INTEGER);
1cd3c1e0
PN
525 len = redisFormatCommand(&cmd,"LPUSH mylist %s",data);
526 c->obuf = sdsnewlen(cmd,len);
527 free(cmd);
ed9b544e 528 createMissingClients(c);
529 aeMain(config.el);
ed0dd554 530 endBenchmark();
ed9b544e 531
ed0dd554 532 prepareForBenchmark("LPOP");
ec8f0667 533 c = createClient(REDIS_REPLY_STRING);
1cd3c1e0
PN
534 len = redisFormatCommand(&cmd,"LPOP mylist");
535 c->obuf = sdsnewlen(cmd,len);
536 free(cmd);
ed9b544e 537 createMissingClients(c);
538 aeMain(config.el);
ed0dd554 539 endBenchmark();
ed9b544e 540
ed0dd554 541 prepareForBenchmark("SADD");
ec8f0667 542 c = createClient(REDIS_REPLY_STATUS);
1cd3c1e0
PN
543 len = redisFormatCommand(&cmd,"SADD myset counter:rand:000000000000");
544 c->obuf = sdsnewlen(cmd,len);
545 free(cmd);
b1ad58ed 546 createMissingClients(c);
547 aeMain(config.el);
ed0dd554 548 endBenchmark();
b1ad58ed 549
ed0dd554 550 prepareForBenchmark("SPOP");
ec8f0667 551 c = createClient(REDIS_REPLY_STRING);
1cd3c1e0
PN
552 len = redisFormatCommand(&cmd,"SPOP myset");
553 c->obuf = sdsnewlen(cmd,len);
554 free(cmd);
b1ad58ed 555 createMissingClients(c);
556 aeMain(config.el);
ed0dd554 557 endBenchmark();
b1ad58ed 558
ed0dd554 559 prepareForBenchmark("LPUSH (again, in order to bench LRANGE)");
ec8f0667 560 c = createClient(REDIS_REPLY_STATUS);
1cd3c1e0
PN
561 len = redisFormatCommand(&cmd,"LPUSH mylist %s",data);
562 c->obuf = sdsnewlen(cmd,len);
563 free(cmd);
2fd30952 564 createMissingClients(c);
565 aeMain(config.el);
ed0dd554 566 endBenchmark();
2fd30952 567
ed0dd554 568 prepareForBenchmark("LRANGE (first 100 elements)");
ec8f0667 569 c = createClient(REDIS_REPLY_ARRAY);
1cd3c1e0
PN
570 len = redisFormatCommand(&cmd,"LRANGE mylist 0 99");
571 c->obuf = sdsnewlen(cmd,len);
572 free(cmd);
2fd30952 573 createMissingClients(c);
574 aeMain(config.el);
ed0dd554 575 endBenchmark();
2fd30952 576
ed0dd554 577 prepareForBenchmark("LRANGE (first 300 elements)");
ec8f0667 578 c = createClient(REDIS_REPLY_ARRAY);
1cd3c1e0
PN
579 len = redisFormatCommand(&cmd,"LRANGE mylist 0 299");
580 c->obuf = sdsnewlen(cmd,len);
581 free(cmd);
ccb5332c 582 createMissingClients(c);
583 aeMain(config.el);
ed0dd554 584 endBenchmark();
ccb5332c 585
ed0dd554 586 prepareForBenchmark("LRANGE (first 450 elements)");
ec8f0667 587 c = createClient(REDIS_REPLY_ARRAY);
1cd3c1e0
PN
588 len = redisFormatCommand(&cmd,"LRANGE mylist 0 449");
589 c->obuf = sdsnewlen(cmd,len);
590 free(cmd);
cc30e368 591 createMissingClients(c);
592 aeMain(config.el);
ed0dd554 593 endBenchmark();
cc30e368 594
ed0dd554 595 prepareForBenchmark("LRANGE (first 600 elements)");
ec8f0667 596 c = createClient(REDIS_REPLY_ARRAY);
1cd3c1e0
PN
597 len = redisFormatCommand(&cmd,"LRANGE mylist 0 599");
598 c->obuf = sdsnewlen(cmd,len);
599 free(cmd);
cc30e368 600 createMissingClients(c);
601 aeMain(config.el);
ed0dd554 602 endBenchmark();
cc30e368 603
ed9b544e 604 printf("\n");
605 } while(config.loop);
606
607 return 0;
608}