Closed
Description
Hi,
I created redis client using options detect_buffers = true.
But if I invoke multi/exec operation on redis , the return type is not as expected.
For example i did in my code:
redis.multi()
multi.del('')
multi.expire(...)
multi.sadd(...)
multi.smembers(...)
multi.exec()
Earlier when I did not use detect_buffers the type of reply for last command was array but now it comes as string.