diff options
author | antirez <antirez@gmail.com> | 2011-03-23 18:09:17 +0100 |
---|---|---|
committer | antirez <antirez@gmail.com> | 2011-03-23 18:09:17 +0100 |
commit | 9791f0f8ceb18e2e3c297a8c479307b7af0f9830 (patch) | |
tree | a9efb22e822b995c7a65ab88c43ca1e5ddf8eee9 /src/redis.c | |
parent | 03af999cb0befed9d2556c2df1eb0511de2d96d2 (diff) | |
download | redis-9791f0f8ceb18e2e3c297a8c479307b7af0f9830.tar.gz |
new preloading implemented, still EXEC not handled correctly, everything to test
Diffstat (limited to 'src/redis.c')
-rw-r--r-- | src/redis.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/redis.c b/src/redis.c index 51e58f587..19fd912cb 100644 --- a/src/redis.c +++ b/src/redis.c @@ -168,7 +168,7 @@ struct redisCommand redisCommandTable[] = { {"lastsave",lastsaveCommand,1,0,NULL,0,0,0,0,0}, {"type",typeCommand,2,0,NULL,1,1,1,0,0}, {"multi",multiCommand,1,0,NULL,0,0,0,0,0}, - {"exec",execCommand,1,REDIS_CMD_DENYOOM,execGetKeys,0,0,0,0,0}, + {"exec",execCommand,1,REDIS_CMD_DENYOOM,NULL,0,0,0,0,0}, {"discard",discardCommand,1,0,NULL,0,0,0,0,0}, {"sync",syncCommand,1,0,NULL,0,0,0,0,0}, {"flushdb",flushdbCommand,1,0,NULL,0,0,0,0,0}, |