]> git.saurik.com Git - redis.git/blobdiff - redis-cli.c
undoed all the sds hacking that lead just to random bugs and no memory saving ;)
[redis.git] / redis-cli.c
index 9dc0ae5a0cdd1ae4b9c85d8b87be983abb0967a0..9acf92dc2f33b815925dbd5cf3ea783bb43591b4 100644 (file)
@@ -79,6 +79,7 @@ static struct redisCommand cmdTable[] = {
     {"smove",4,REDIS_CMD_BULK},
     {"sismember",3,REDIS_CMD_BULK},
     {"scard",2,REDIS_CMD_INLINE},
+    {"spop",2,REDIS_CMD_INLINE},
     {"sinter",-2,REDIS_CMD_INLINE},
     {"sinterstore",-3,REDIS_CMD_INLINE},
     {"sunion",-2,REDIS_CMD_INLINE},
@@ -111,6 +112,7 @@ static struct redisCommand cmdTable[] = {
     {"expire",3,REDIS_CMD_INLINE},
     {"ttl",2,REDIS_CMD_INLINE},
     {"slaveof",3,REDIS_CMD_INLINE},
+    {"debug",-2,REDIS_CMD_INLINE},
     {NULL,0,0}
 };