redis-py icon indicating copy to clipboard operation
redis-py copied to clipboard

Add support for JSON commands in Async Cluster

Open motybz opened this issue 2 years ago • 0 comments

It seems that the .json() ability is supported in the Cluster client but not in Async Cluster client.

from redis.asyncio.cluster import RedisCluster
client = RedisCluster()
await client.json().get("test")

AttributeError: 'RedisCluster' object has no attribute 'json'

motybz avatar Jun 15 '22 10:06 motybz