summaryrefslogtreecommitdiff
path: root/benchmark.c
diff options
context:
space:
mode:
authorantirez <antirez@gmail.com>2009-11-19 10:42:19 +0100
committerantirez <antirez@gmail.com>2009-11-19 10:42:19 +0100
commit89ee361eeffe6c117a9edb19e8468c44b394ee31 (patch)
tree7adba10a5731daf2397a6a006e01828559980d3a /benchmark.c
parentc28b42acd9b32c8888d7265adc528ded7a787919 (diff)
downloadredis-89ee361eeffe6c117a9edb19e8468c44b394ee31.tar.gz
benchmark.c fixes
Diffstat (limited to 'benchmark.c')
-rw-r--r--benchmark.c14
1 files changed, 9 insertions, 5 deletions
diff --git a/benchmark.c b/benchmark.c
index 6b4fb2ff4..1d0da51cc 100644
--- a/benchmark.c
+++ b/benchmark.c
@@ -137,7 +137,8 @@ static void resetClient(client c) {
aeCreateFileEvent(config.el,c->fd, AE_WRITABLE,writeHandler,c,NULL);
sdsfree(c->ibuf);
c->ibuf = sdsempty();
- c->readlen = (c->replytype == REPLY_BULK) ? -1 : 0;
+ c->readlen = (c->replytype == REPLY_BULK ||
+ c->replytype == REPLY_MBULK) ? -1 : 0;
c->mbulk = -1;
c->written = 0;
c->state = CLIENT_SENDQUERY;
@@ -238,6 +239,7 @@ processdata:
*p = '\0';
*(p-1) = '\0';
c->readlen = atoi(c->ibuf+1)+2;
+ // printf("BULK ATOI: %s\n", c->ibuf+1);
/* Handle null bulk reply "$-1" */
if (c->readlen-2 == -1) {
clientDone(c);
@@ -258,6 +260,7 @@ processdata:
clientDone(c);
return;
}
+ // printf("%p) %d elements list\n", c, c->mbulk);
/* Leave all the rest in the input buffer */
c->ibuf = sdsrange(c->ibuf,(p-c->ibuf)+1,-1);
goto processdata;
@@ -273,9 +276,14 @@ processdata:
(c->replytype == REPLY_BULK)) && c->readlen != -1 &&
(unsigned)c->readlen <= sdslen(c->ibuf))
{
+ // printf("BULKSTATUS mbulk:%d readlen:%d sdslen:%d\n",
+ // c->mbulk,c->readlen,sdslen(c->ibuf));
if (c->replytype == REPLY_BULK) {
clientDone(c);
} else if (c->replytype == REPLY_MBULK) {
+ // printf("%p) %d (%d)) ",c, c->mbulk, c->readlen);
+ // fwrite(c->ibuf,c->readlen,1,stdout);
+ // printf("\n");
if (--c->mbulk == 0) {
clientDone(c);
} else {
@@ -486,7 +494,6 @@ int main(int argc, char **argv) {
}
do {
-#if 0
prepareForBenchmark();
c = createClient();
if (!c) exit(1);
@@ -548,7 +555,6 @@ int main(int argc, char **argv) {
aeMain(config.el);
endBenchmark("PING");
-#endif
prepareForBenchmark();
c = createClient();
if (!c) exit(1);
@@ -558,7 +564,6 @@ int main(int argc, char **argv) {
aeMain(config.el);
endBenchmark("LPUSH (again, in order to bench LRANGE)");
-#if 0
prepareForBenchmark();
c = createClient();
if (!c) exit(1);
@@ -585,7 +590,6 @@ int main(int argc, char **argv) {
createMissingClients(c);
aeMain(config.el);
endBenchmark("LRANGE (first 450 elements)");
-#endif
prepareForBenchmark();
c = createClient();