redis-py
redis-py copied to clipboard
Add support for JSON commands in Async Cluster
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'