not yet working BLPOP implementation

This commit is contained in:
antirez
2009-12-29 14:59:40 -05:00
parent 436b423e18
commit 4409877e19
4 changed files with 235 additions and 4 deletions

View File

@ -71,6 +71,8 @@ static struct redisCommand cmdTable[] = {
{"lpush",3,REDIS_CMD_BULK},
{"rpop",2,REDIS_CMD_INLINE},
{"lpop",2,REDIS_CMD_INLINE},
{"brpop",3,REDIS_CMD_INLINE},
{"blpop",3,REDIS_CMD_INLINE},
{"llen",2,REDIS_CMD_INLINE},
{"lindex",3,REDIS_CMD_INLINE},
{"lset",4,REDIS_CMD_BULK},