Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

json().mget gives incompatible results from real redis #340

Open
zh217 opened this issue Aug 5, 2024 · 0 comments
Open

json().mget gives incompatible results from real redis #340

zh217 opened this issue Aug 5, 2024 · 0 comments

Comments

@zh217
Copy link

zh217 commented Aug 5, 2024

As an example:

import redis
import fakeredis

r = fakeredis.FakeStrictRedis()
r.json().set('a', '$', {'hello': 'world'})
print('fakeredis:')
print(r.json().mget(['a'], '$'))

r = redis.StrictRedis()
r.json().set('a', '$', {'hello': 'world'})
print('redis:')
print(r.json().mget(['a'], '$'))

This will print:

fakeredis:
[{'hello': 'world'}]
redis:
[[{'hello': 'world'}]]
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

1 participant