]> git.saurik.com Git - redis.git/blobdiff - src/redis.c
OBJECT command implemented
[redis.git] / src / redis.c
index 1cc8cc75f6c900b9707368e71f90dedc5e003abd..9c726151fb66a87f5edbd7a712327ac982bbb640 100644 (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 ============================ */