Replies: 1 comment
-
Maybe you know, @ofekshenawa or @monkey92t ? |
Beta Was this translation helpful? Give feedback.
0 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
Configuration:
We use this client configuration for Redis (redis v8, v8.11.5):
With
ReadOnly
andRouteRandomly
enabled.Problem:
The code was using
ZRangeByScoreWithScores
command in a loop, we decided to move this command to Pipeline and encountered performance degradation due to all Exec commands going to master only. As far as I know, not all Redis libraries support the ability to execute Exec commands on slaves, is there any way to achieve this functionality ingo-redis
?Before:
After:
Beta Was this translation helpful? Give feedback.
All reactions