Commit 9cb8ac2b authored by Marc Gravell's avatar Marc Gravell

Merge pull request #396 from JoshuaKGoldberg/patch-2

Split a run-on sentence into two sentences
parents faf333d4 e326b8fd
...@@ -10,7 +10,7 @@ ConnectionMultiplexer redis = ConnectionMultiplexer.Connect("localhost"); ...@@ -10,7 +10,7 @@ ConnectionMultiplexer redis = ConnectionMultiplexer.Connect("localhost");
// ^^^ store and re-use this!!! // ^^^ store and re-use this!!!
``` ```
Note that `ConnectionMultiplexer` implements `IDisposable` and can be disposed when no longer required, but I am deliberately not showing `using` statement usage, because it is exceptionally rare that you would want to use a `ConnectionMultiplexer` briefly, as the idea is to re-use this object. Note that `ConnectionMultiplexer` implements `IDisposable` and can be disposed when no longer required. This is deliberately not showing `using` statement usage, because it is exceptionally rare that you would want to use a `ConnectionMultiplexer` briefly, as the idea is to re-use this object.
A more complicated scenario might involve a master/slave setup; for this usage, simply specify all the desired nodes that make up that logical redis tier (it will automatically identify the master): A more complicated scenario might involve a master/slave setup; for this usage, simply specify all the desired nodes that make up that logical redis tier (it will automatically identify the master):
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment