IlyaSkriblovsky / txredisapi

non-blocking redis client for python twisted
Apache License 2.0
235 stars 91 forks source link

Properly handle bulk response of command issued right before multi #136

Closed IlyaSkriblovsky closed 4 years ago

IlyaSkriblovsky commented 5 years ago

Fixes #135

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().

IlyaSkriblovsky commented 4 years ago

Recreated as #141