INFO fixed, MGET implemented, redis-cli implements INFO/MGET

This commit is contained in:
antirez
2009-03-22 14:54:14 +01:00
parent ed9b544e10
commit 70003d28b8
2 changed files with 28 additions and 1 deletions

View File

@ -103,7 +103,8 @@ static struct redisCommand cmdTable[] = {
{"flushdb",1,REDIS_CMD_INLINE|REDIS_CMD_RETCODEREPLY},
{"flushall",1,REDIS_CMD_INLINE|REDIS_CMD_RETCODEREPLY},
{"sort",-2,REDIS_CMD_INLINE|REDIS_CMD_MULTIBULKREPLY},
{"version",1,REDIS_CMD_INLINE|REDIS_CMD_SINGLELINEREPLY},
{"info",1,REDIS_CMD_INLINE|REDIS_CMD_BULKREPLY},
{"mget",-2,REDIS_CMD_INLINE|REDIS_CMD_MULTIBULKREPLY},
{NULL,0,0}
};