Cant connect to Redis Database
Any idea, why I cant connect to my local Redis database?
When I try to connect via redis cli, it works.
https://haste.devcord.club/kigopamura.cs
11 Replies
You can look inside the exception and find the exact reason
turn
catch {
into catch (Exception ex) {
Yeah, I know the exception
It just says, that it cant connect to the database
does the
ex.InnerException
say more?Is there a difference between .ToString and .InnerException.ToString?
an exception can have an "inner exception" which is used for example
basically "what exception caused this exception"
Looks like there is no Inner Exception
But the exception is https://haste.devcord.club/ewazefiqer.cs, if it helps
Any idea?
Stack Overflow
It was not possible to connect to the redis server(s); to create a ...
I have the following piece of code to connect to azure redis cache.
public class CacheConnectionHelper
{
private static Lazy<ConnectionMultiplexer> lazyConnection = new Lazy<
Now I timeout every time trying to do something...
Any idea, why I time out every time?
Btw the error is https://haste.devcord.club/odaxudeqac.md
Have you tried to google this exception?