skip to Main Content

Redis TimeoutException

I'm pushing some data to a Redis instance from a console app every few seconds. This is roughly how I'm doing it: int foo = GetFoo(); BigObject bar = GetBigObject(); _cache.StringSet("Foo", JsonConvert.SerializeObject(foo)); _cache.StringSet("Bar", JsonConvert.SerializeObject(bar)); but after a while I get…

VIEW QUESTION

How to enable TLS for Redis 6 on Sidekiq?

Problem On my Ruby on Rails app, I keep getting the error below for the Heroku Redis Premium 0 add-on: OpenSSL::SSL::SSLError: SSL_connect returned=1 errno=0 state=error: certificate verify failed (self signed certificate in certificate chain) Heroku Redis documentation mentions that I…

VIEW QUESTION
Back To Top
Search