It seems that the .json() ability [is supported in the Cluster client](https://github.com/redis/redis-py/pull/2032 ) but not in Async Cluster client. ```python from redis.asyncio.cluster import RedisCluster client = RedisCluster() await client.json().get("test") ``` `AttributeError: 'RedisCluster' object has no attribute 'json'`