Skip to content
This repository was archived by the owner on Dec 24, 2022. It is now read-only.

Commit 271e5a1

Browse files
committed
Update README.md
1 parent c1db97a commit 271e5a1

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

README.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -77,7 +77,7 @@ Any additional configuration can be specified as QueryString parameters. The ful
7777

7878
The recommended way to access `RedisClient` instances is to use one of the available Thread-Safe Client Managers below. Client Managers are connection factories which is ideally registered as a Singleton either in your IOC or static classes.
7979

80-
#### RedisManagerPool
80+
### RedisManagerPool
8181

8282
With the enhanced Redis URI Connection Strings we've been able to simplify and streamline the existing `PooledRedisClientManager` implementation and have extracted it out into a new clients manager called `RedisManagerPool`.
8383

@@ -92,7 +92,7 @@ container.Register<IRedisClientsManager>(c =>
9292

9393
Any connections required after the maximum Pool size has been reached will be created and disposed outside of the Pool. By not being restricted to a maximum pool size, the pooling behavior in `RedisManagerPool` can maintain a smaller connection pool size at the cost of potentially having a higher opened/closed connection count.
9494

95-
#### PooledRedisClientManager
95+
### PooledRedisClientManager
9696

9797
If you prefer to define options on the Client Manager itself or you want to provide separate Read/Write and ReadOnly
9898
(i.e. Master and Slave) redis-servers, use the `PooledRedisClientManager` instead:
@@ -109,7 +109,7 @@ container.Register<IRedisClientsManager>(c =>
109109

110110
The `PooledRedisClientManager` imposes a maximum connection limit and when its maximum pool size has been reached will instead block on any new connection requests until the next `RedisClient` is released back into the pool. If no client became available within `PoolTimeout`, a Pool `TimeoutException` will be thrown.
111111

112-
#### BasicRedisClientManager
112+
### BasicRedisClientManager
113113

114114
If don't want to use connection pooling (i.e. your accessing a local redis-server instance) you can use a basic (non-pooled) Clients Manager which creates a new `RedisClient` instance each time:
115115

0 commit comments

Comments
 (0)