From a79b84ab7f5079149afdd965e63134883380c06e Mon Sep 17 00:00:00 2001 From: artix Date: Fri, 15 Feb 2019 12:31:00 +0100 Subject: [PATCH] Redis benchmark: fix default hset test key --- src/redis-benchmark.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/redis-benchmark.c b/src/redis-benchmark.c index 8f239ac1..5aec3c93 100644 --- a/src/redis-benchmark.c +++ b/src/redis-benchmark.c @@ -1634,7 +1634,7 @@ int main(int argc, const char **argv) { if (test_is_selected("hset")) { len = redisFormatCommand(&cmd, - "HSET myset:{tag}:__rand_int__ element:__rand_int__ %s",data); + "HSET myhash:{tag}:__rand_int__ element:__rand_int__ %s",data); benchmark("HSET",cmd,len); free(cmd); }