CLIENT LIST implemented

This commit is contained in:
antirez
2011-04-21 15:38:02 +02:00
parent 17b24ff30d
commit 3cd12b5687
6 changed files with 64 additions and 2 deletions

View File

@ -192,7 +192,8 @@ struct redisCommand redisCommandTable[] = {
{"restore",restoreCommand,4,0,NULL,0,0,0,0,0},
{"migrate",migrateCommand,6,0,NULL,0,0,0,0,0},
{"dump",dumpCommand,2,0,NULL,0,0,0,0,0},
{"object",objectCommand,-2,0,NULL,0,0,0,0,0}
{"object",objectCommand,-2,0,NULL,0,0,0,0,0},
{"client",clientCommand,-2,0,NULL,0,0,0,0,0}
};
/*============================ Utility functions ============================ */