Configure Redis Cluster
masterIn 'Normal Mode', define a CSRedisClient with a standard connection string. The client will automatically update its Nodes property by recording slots from MOVED or ASK errors returned by the server.
Important Constraints:
- Prefix Warning: Do NOT set a
prefix(or ensure all clients have the same prefix) when using Cluster mode alongside 'Partition Mode'. Doing so causeskeySlotcalculations to mismatch the server, preventing slot caching. - Feature Limitations: Official Redis Cluster does not support multi-key commands,
Pipeline, orEval(scripts).