Open shaileshkathole23 opened 4 months ago
Hi @shaileshkathole23, I'm not sure about the documentation, I think the project is not being maintained much nowadays. Wondering though, what part did you add this access string in? I've been facing some similar issues. Thanks!
Edit: Ahh actually it looks like the access strings are specific to ElastiCache, I'm using Azure Redis Cache :)
I am using IORedis to connect to AWS ElastiCache with:
on ~* +@all -@dangerous -@admin
With code
IOredis throws error:
[ioredis] Unhandled error event: ClusterAllFailedError: Failed to refresh slots cache
When I update the user access string to
on ~* +@all -@dangerous -@admin +info +cluster
it works fine.Is their any documentation why ioredis requires additional
+info +cluster
access string which is marked as dangerous category?Is it mandatory to have
+info +cluster
access string? If yes, why and if you can share documentation to understand it?