X-Git-Url: https://git.saurik.com/redis.git/blobdiff_plain/ef21ab960e061e84ee0e8ba81900750e32179215..fd7a584f7ab9a796338e3bd6cacf01ce5476bb91:/src/redis.c diff --git a/src/redis.c b/src/redis.c index 8b8c49eb..9c726151 100644 --- a/src/redis.c +++ b/src/redis.c @@ -189,8 +189,10 @@ struct redisCommand redisCommandTable[] = { {"watch",watchCommand,-2,0,noPreloadGetKeys,1,-1,1,0,0}, {"unwatch",unwatchCommand,1,0,NULL,0,0,0,0,0}, {"cluster",clusterCommand,-2,0,NULL,0,0,0,0,0}, - {"restore",restoreCommand,3,0,NULL,0,0,0,0,0}, - {"migrate",migrateCommand,6,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}, + {"object",objectCommand,-2,0,NULL,0,0,0,0,0} }; /*============================ Utility functions ============================ */