]> git.saurik.com Git - redis.git/blobdiff - redis-cli.c
Prevent hash table resize while there are active child processes in order to play...
[redis.git] / redis-cli.c
index 3f63aeaa665870bd3bc3c4f998f49ef19ee4901c..5760da15a803b548ab25621cace86861daa7500f 100644 (file)
@@ -159,6 +159,9 @@ static struct redisCommand cmdTable[] = {
     {"hgetall",2,REDIS_CMD_INLINE},
     {"hexists",3,REDIS_CMD_BULK},
     {"config",-2,REDIS_CMD_BULK},
+    {"subscribe",-2,REDIS_CMD_INLINE},
+    {"unsubscribe",-1,REDIS_CMD_INLINE},
+    {"publish",3,REDIS_CMD_BULK},
     {NULL,0,0}
 };