]> git.saurik.com Git - redis.git/commit
Safer handling of MULTI/EXEC on errors.
authorantirez <antirez@gmail.com>
Thu, 15 Nov 2012 19:11:05 +0000 (20:11 +0100)
committerantirez <antirez@gmail.com>
Thu, 22 Nov 2012 09:32:07 +0000 (10:32 +0100)
commit3d1391272aa46aa3a52a700f6b1ef0a47d4dcda9
tree4003f616330037daf6b04a11bcd00ccddbeeb9d4
parent753699172620ef6c36969385c9bd697c6fc2db98
Safer handling of MULTI/EXEC on errors.

After the transcation starts with a MULIT, the previous behavior was to
return an error on problems such as maxmemory limit reached. But still
to execute the transaction with the subset of queued commands on EXEC.

While it is true that the client was able to check for errors
distinguish QUEUED by an error reply, MULTI/EXEC in most client
implementations uses pipelining for speed, so all the commands and EXEC
are sent without caring about replies.

With this change:

1) EXEC fails if at least one command was not queued because of an
error. The EXECABORT error is used.
2) A generic error is always reported on EXEC.
3) The client DISCARDs the MULTI state after a failed EXEC, otherwise
pipelining multiple transactions would be basically impossible:
After a failed EXEC the next transaction would be simply queued as
the tail of the previous transaction.
src/multi.c
src/redis.c
src/redis.h