Distinction between pendingTransaction and inTransaction states. pendingTransaction is set to True when MULTI is issued. inTransaction is set only after OK was received.
This is needed to properly handle bulk response from previous command that was issued right before .multi().
Fixes #135
Distinction between
pendingTransaction
andinTransaction
states.pendingTransaction
is set toTrue
whenMULTI
is issued.inTransaction
is set only afterOK
was received.This is needed to properly handle bulk response from previous command that was issued right before
.multi()
.