mirror of https://github.com/dapr/docs.git
Merge pull request #1447 from Taction/feature/add_maxlen_to_redis_pubsub
Add maxLen for redis pubsub component
This commit is contained in:
commit
1cabb2cec3
|
@ -61,6 +61,7 @@ The above example uses secrets as plain strings. It is recommended to use a secr
|
|||
| minIdleConns | N | Minimum number of idle connections to keep open in order to avoid the performance degradation associated with creating new connections. Defaults to `"0"`. | `"2"`
|
||||
| idleCheckFrequency | N | Frequency of idle checks made by idle connections reaper. Default is `"1m"`. `"-1"` disables idle connections reaper. | `"-1"`
|
||||
| idleTimeout | N | Amount of time after which the client closes idle connections. Should be less than server's timeout. Default is `"5m"`. `"-1"` disables idle timeout check. | `"10m"`
|
||||
| maxLenApprox | N | Maximum number of items inside a stream.The old entries are automatically evicted when the specified length is reached, so that the stream is left at a constant size. Defaults to unlimited. | `"10000"`
|
||||
|
||||
## Create a Redis instance
|
||||
|
||||
|
|
Loading…
Reference in New Issue