Skip to main content

Valkey

Valkey is an open-source, high-performance key-value store forked from Redis. The Valkey provider uses the same Rueidis client as the Redis provider and is fully interchangeable.

Configuration

Environment Variables

CACHE__TYPE=valkey
CACHE__VALKEY__HOSTS=localhost:6379
CACHE__VALKEY__PASSWORD=changeme
CACHE__VALKEY__TLS_ENABLED=false
CACHE__VALKEY__TLS_SERVER_NAME=

YAML Configuration

cache:
type: valkey
valkey:
hosts:
- localhost:6379
password: changeme
tls_enabled: false
tls_server_name: ''
VariableDescriptionDefaultRequired
CACHE__TYPECache provider type-
CACHE__VALKEY__HOSTSComma-separated list of Valkey host:port addresses-
CACHE__VALKEY__PASSWORDValkey password-
CACHE__VALKEY__TLS_ENABLEDEnable TLS for the Valkey connectionfalse
CACHE__VALKEY__TLS_SERVER_NAMETLS server name for certificate verification-