docs: describe the missing db parameter in redis provider
This commit is contained in:
parent
0bd367ebbd
commit
db3e8a7f5a
1 changed files with 22 additions and 0 deletions
|
@ -105,6 +105,28 @@ providers:
|
||||||
--providers.redis.password=foo
|
--providers.redis.password=foo
|
||||||
```
|
```
|
||||||
|
|
||||||
|
### `db`
|
||||||
|
|
||||||
|
_Optional, Default=0_
|
||||||
|
|
||||||
|
Defines the database to be selected after connecting to the Redis.
|
||||||
|
|
||||||
|
```yaml tab="File (YAML)"
|
||||||
|
providers:
|
||||||
|
redis:
|
||||||
|
# ...
|
||||||
|
db: 0
|
||||||
|
```
|
||||||
|
|
||||||
|
```toml tab="File (TOML)"
|
||||||
|
[providers.redis]
|
||||||
|
db = 0
|
||||||
|
```
|
||||||
|
|
||||||
|
```bash tab="CLI"
|
||||||
|
--providers.redis.db=0
|
||||||
|
```
|
||||||
|
|
||||||
### `tls`
|
### `tls`
|
||||||
|
|
||||||
_Optional_
|
_Optional_
|
||||||
|
|
Loading…
Reference in a new issue