rediscala
rediscala copied to clipboard
Smembers is set as isMasterOnly = true
Although it is a read only command, Smembers
is set as isMasterOnly = true
. Therefore SMEMBERS
calls are run against master in RedisClientMasterSlaves
mode.
One workaround could be using SINTER
with one key as it is set as isMasterOnly = false
.
any updates on this? What is the point of explicitly running this on master?