Replies: 1 comment 9 replies
-
Do you mean rueidishook?
What redis operations are you using?
Would it be possible to add more CPU cores to your application and see if those spikes go down? |
Beta Was this translation helpful? Give feedback.
9 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
Currently we're looking to leverage rueidis in place of the go-redis package. We leveraged it in a service and noticed that the roundtrip latency spiked along with our processing of events.
Currently running version 7.1 redis in AWS Elasticache in clustermode
we're using mostly default config options with the exception of
BlockingPoolSize = 100
Dialer.Timeout = 1s
SenToReplicas = cmd.IsReadOnly()
and leveraging TLS
the client is created,
we add a hook for timing
and then leverage the rueidiscompt.NewAdapter so we can leverage the already existing code for redis operations
Beta Was this translation helpful? Give feedback.
All reactions