diff options
author | michael-grunder <michael.grunder@gmail.com> | 2018-05-20 11:57:21 -0700 |
---|---|---|
committer | michael-grunder <michael.grunder@gmail.com> | 2018-05-20 11:57:21 -0700 |
commit | 60f622b892a9ea0d0a4c31fb9c57f2a6f5c5ca61 (patch) | |
tree | 7c60b7c59f652069f218916e76efa71745960a48 | |
parent | 7bef042c0375cd5189b77abb879ca2e3a8c4d6d4 (diff) |
Add an integer parsing heavy workload to throughput testing
-rw-r--r-- | test.c | 24 |
1 files changed, 24 insertions, 0 deletions
@@ -692,6 +692,17 @@ static void test_throughput(struct config config) { free(replies); printf("\t(%dx LRANGE with 500 elements: %.3fs)\n", num, (t2-t1)/1000000.0); + replies = malloc(sizeof(redisReply*)*num); + t1 = usec(); + for (i = 0; i < num; i++) { + replies[i] = redisCommand(c, "INCRBY incrkey %lld", 10000000); + assert(replies[i] != NULL && replies[i]->type == REDIS_REPLY_INTEGER); + } + t2 = usec(); + for (i = 0; i < num; i++) freeReplyObject(replies[i]); + free(replies); + printf("\t(%dx INCRBY: %.3fs)\n", num, (t2-t1)/1000000.0); + num = 10000; replies = malloc(sizeof(redisReply*)*num); for (i = 0; i < num; i++) @@ -720,6 +731,19 @@ static void test_throughput(struct config config) { free(replies); printf("\t(%dx LRANGE with 500 elements (pipelined): %.3fs)\n", num, (t2-t1)/1000000.0); + replies = malloc(sizeof(redisReply*)*num); + for (i = 0; i < num; i++) + redisAppendCommand(c,"INCRBY incrkey %lld", 10000000); + t1 = usec(); + for (i = 0; i < num; i++) { + assert(redisGetReply(c, (void*)&replies[i]) == REDIS_OK); + assert(replies[i] != NULL && replies[i]->type == REDIS_REPLY_INTEGER); + } + t2 = usec(); + for (i = 0; i < num; i++) freeReplyObject(replies[i]); + free(replies); + printf("\t(%dx INCRBY (pipelined): %.3fs)\n", num, (t2-t1)/1000000.0); + disconnect(c, 0); } |