fix : add the tls support for the redis cache

This commit is contained in:
Manendra Pal Singh
2026-01-09 12:40:10 +05:30
parent bbc7ff91f9
commit 58457d53c2
3 changed files with 22 additions and 4 deletions

View File

@@ -601,8 +601,19 @@ cache:
addr: 10.81.192.4:6379
```
**Or with TLS enabled:**
```yaml
cache:
id: cache
config:
addr: redis.example.com:6380
use_tls: "true"
```
**Parameters**:
- `addr`: Redis server address and port
- `use_tls`: Enable TLS connection to Redis (`"true"` to enable, omit or any other value to disable). Default: disabled.
---