We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
Describe the bug Removing from a stream results in an error
To Reproduce
from fakeredis.aioredis import FakeRedis async def main(): redis = FakeRedis() await redis.xadd('stream', fields={'foo': 'bar'}) entries = await redis.xrange('stream') entry_id, entry_data = entries[0] await redis.xdel(entry_id) # <--- redis.exceptions.ResponseError: unknown command `xdel`, with args beginning with: if __name__ == '__main__': asyncio.run(main())
Desktop (please complete the following information):
The text was updated successfully, but these errors were encountered:
Implement XDEL #150
a570206
814a7b0
No branches or pull requests
Describe the bug
Removing from a stream results in an error
To Reproduce
Desktop (please complete the following information):
The text was updated successfully, but these errors were encountered: