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
In redis-client you can do either r.call(['GET', 'mykey']) or r.call('GET', 'mykey') but with mock_redis it seems like it's not possible to do r.call('GET', 'mykey'), only r.call(['GET', 'mykey'])?
In
redis-client
you can do eitherr.call(['GET', 'mykey'])
orr.call('GET', 'mykey')
but withmock_redis
it seems like it's not possible to dor.call('GET', 'mykey')
, onlyr.call(['GET', 'mykey'])
?Based on https://github.com/sds/mock_redis/blob/e2e00b4baa3502f4ff185601f5e1cb03d9d44c86/lib/mock_redis/database.rb#L52C8-L53C8 it would appear it requires the first argument
command
be an array.r.call('GET', 'mykey')
?I think it might be due to the downcase code introduced in #287?
Thanks!
The text was updated successfully, but these errors were encountered: