You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
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.
The text was updated successfully, but these errors were encountered:
any updates?
The expected behavior with detect_buffers should be if key is passed as buffer, return response as buffer else return reply as it is (as it would have given in case of no detect_buffers options)
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.
The text was updated successfully, but these errors were encountered: