Replies: 1 comment 1 reply
-
It's generally a bad idea to share resources between your different environments. For example, if you introduce a bug in your dev or test environment that uses up all of the Redis CPU then your prod environment would be affected. Having said that, if you still want to use the same Redis instance then you should add a |
Beta Was this translation helpful? Give feedback.
1 reply
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Uh oh!
There was an error while loading. Please reload this page.
-
I have an application that uses SignalR with the
Microsoft.AspNetCore.SignalR.Redis
nuget package. If I install the application in multiple environments (dev, test, staging, etc), is it safe for them all to use the same redis server without interference? I am not passing in anything special in the configuration:Is there anything else I would need to do or is that good enough?
Beta Was this translation helpful? Give feedback.
All reactions