File tree Expand file tree Collapse file tree 2 files changed +4
-3
lines changed
docs/api/baseplate/clients Expand file tree Collapse file tree 2 files changed +4
-3
lines changed Original file line number Diff line number Diff line change @@ -13,6 +13,7 @@ Instrumented Client Libraries
13
13
baseplate.clients.kombu: Client for publishing to queues <kombu >
14
14
baseplate.clients.memcache: Memcached Client <memcache >
15
15
baseplate.clients.redis: Redis Client <redis >
16
+ baseplate.clients.redis_cluster: Redis Cluster Client <redis_cluster >
16
17
baseplate.clients.requests: Requests (HTTP) Client <requests >
17
18
baseplate.clients.sqlalchemy: SQL Client for relational databases (e.g. PostgreSQL) <sqlalchemy >
18
19
baseplate.clients.thrift: Thrift client for RPC to other backend services <thrift >
Original file line number Diff line number Diff line change 1
1
``baseplate.clients.redis_cluster ``
2
- ===========================
2
+ ===================================
3
3
4
4
`Redis `_ is an in-memory data structure store used where speed is necessary but
5
5
complexity is beyond simple key-value operations. (If you're just doing
@@ -44,8 +44,8 @@ configure it in your application's configuration file:
44
44
# optional: how long to wait for a connection to establish
45
45
foo.timeout = 3 seconds
46
46
47
- # optional: Whether read requests should be directed to replicas
48
- # instead of the primary
47
+ # optional: Whether read requests should be directed to replicas as well
48
+ # instead of just the primary
49
49
foo.read_from_replicas = true
50
50
...
51
51
You can’t perform that action at this time.
0 commit comments