From 92be111419f8884976dc3f6125e6df9db2f116a5 Mon Sep 17 00:00:00 2001 From: Daniel-Constantin Mierla Date: Fri, 7 Jul 2017 09:03:01 +0200 Subject: [PATCH] topos_redis: increase the array size used for storage ops --- src/modules/topos_redis/topos_redis_storage.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/modules/topos_redis/topos_redis_storage.c b/src/modules/topos_redis/topos_redis_storage.c index 6a39f03cbe0..f8d47999c26 100644 --- a/src/modules/topos_redis/topos_redis_storage.c +++ b/src/modules/topos_redis/topos_redis_storage.c @@ -49,7 +49,7 @@ static str _tps_redis_dprefix = str_init("d:z:"); // void *redisCommandArgv(redisContext *c, int argc, const char **argv, const size_t *argvlen); -#define TPS_REDIS_NR_KEYS 32 +#define TPS_REDIS_NR_KEYS 48 #define TPS_REDIS_DATA_SIZE 8192 static char _tps_redis_cbuf[TPS_DATA_SIZE];