HKEYS / HVALS / HGETALL

This commit is contained in:
antirez
2010-03-16 16:09:58 +01:00
parent 6d4fb107b2
commit 78409a0f84
2 changed files with 83 additions and 6 deletions

View File

@ -149,6 +149,9 @@ static struct redisCommand cmdTable[] = {
{"hget",3,REDIS_CMD_BULK},
{"hdel",3,REDIS_CMD_BULK},
{"hlen",2,REDIS_CMD_INLINE},
{"hkeys",2,REDIS_CMD_INLINE},
{"hvals",2,REDIS_CMD_INLINE},
{"hgetall",2,REDIS_CMD_INLINE},
{NULL,0,0}
};