OBJECT command implemented

This commit is contained in:
antirez
2011-04-06 12:19:45 +02:00
parent f797c7dc17
commit ece74202bb
3 changed files with 42 additions and 1 deletions

View File

@ -191,7 +191,8 @@ struct redisCommand redisCommandTable[] = {
{"cluster",clusterCommand,-2,0,NULL,0,0,0,0,0},
{"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}
{"dump",dumpCommand,2,0,NULL,0,0,0,0,0},
{"object",objectCommand,-2,0,NULL,0,0,0,0,0}
};
/*============================ Utility functions ============================ */