first implementation of HSET/HSET. More work needed

This commit is contained in:
antirez
2010-03-06 01:56:16 +01:00
parent 5234952bee
commit 978c2c944c
4 changed files with 79 additions and 1 deletions

View File

@ -141,8 +141,10 @@ static struct redisCommand cmdTable[] = {
{"msetnx",-3,REDIS_CMD_MULTIBULK},
{"monitor",1,REDIS_CMD_INLINE},
{"multi",1,REDIS_CMD_INLINE},
{"exec",1,REDIS_CMD_MULTIBULK},
{"exec",1,REDIS_CMD_INLINE},
{"discard",1,REDIS_CMD_INLINE},
{"hset",4,REDIS_CMD_MULTIBULK},
{"hget",3,REDIS_CMD_BULK},
{NULL,0,0}
};