]> git.saurik.com Git - redis.git/commitdiff
more writev tests/work
authorantirez <antirez@gmail.com>
Wed, 18 Nov 2009 18:02:20 +0000 (19:02 +0100)
committerantirez <antirez@gmail.com>
Wed, 18 Nov 2009 18:02:20 +0000 (19:02 +0100)
benchmark.c

index ca2a0f0bb37e540ddfd34020e4006620c6d354b5..bf8e2834d9422224f578b231f4f6fa42b40883b5 100644 (file)
@@ -565,6 +565,15 @@ int main(int argc, char **argv) {
         aeMain(config.el);
         endBenchmark("LRANGE (first 100 elements)");
 
+        prepareForBenchmark();
+        c = createClient();
+        if (!c) exit(1);
+        c->obuf = sdscat(c->obuf,"LRANGE mylist 0 299\r\n");
+        prepareClientForReply(c,REPLY_MBULK);
+        createMissingClients(c);
+        aeMain(config.el);
+        endBenchmark("LRANGE (first 300 elements)");
+
         printf("\n");
     } while(config.loop);