You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository was archived by the owner on Dec 24, 2022. It is now read-only.
Copy file name to clipboardExpand all lines: README.md
+1-1Lines changed: 1 addition & 1 deletion
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -802,7 +802,7 @@ What to look out for in your code-base to prevent against multiple concurrent us
802
802
803
803
- Use `IRedisClient` redis instance client within a `using` statement
804
804
- Never use a client instance after it has been disposed
805
-
- Never use (or return) a "server collection or lock" (e.g. [Redis.Lists](#simple-example-using-redis-lists)) after the client has been disposed
805
+
- Never use (or return) a "server collection or resource" (e.g. [Redis.Lists](#simple-example-using-redis-lists), lock) after the client has been disposed
806
806
- Never keep a Singleton or `static` instance to a redis client (just the `IRedisClientsManager` factory)
807
807
- Never use the same redis client in multiple threads, i.e. have each thread resolve their own client from the factory
0 commit comments