]> git.saurik.com Git - redis.git/commit - src/redis.c
Take a pointer to the relevant entry of the command table in the client structure...
authorantirez <antirez@gmail.com>
Fri, 8 Jul 2011 10:59:30 +0000 (12:59 +0200)
committerantirez <antirez@gmail.com>
Fri, 8 Jul 2011 10:59:30 +0000 (12:59 +0200)
commit09e2d9eeba3ff65fd60f905a5bcb0f684f7a883e
tree58e795ee4267aafd70d1604a0d7d456a9b9654e7
parent5521fa6a9f1f22bf2034d26b68e885c1dd5baa3a
Take a pointer to the relevant entry of the command table in the client structure. This is generally a more sounding design, simplifies a few functions prototype, and as a side effect fixes a bug related to the conversion of EXPIRE -1 to DEL: before of this fix Redis tried to convert it into an EXPIREAT in the AOF code, regardless of our rewrite of the command.
src/multi.c
src/networking.c
src/redis.c
src/redis.h
src/t_list.c