Valkey

Category: NoSQL, KeyValue Status: good

Connects to Valkey — an open-source Redis-compatible key-value store (Linux Foundation fork of Redis). Supports all standard Redis key operations.

Connection Settings

Field Default Description
host localhost Server hostname or IP
port 6379 TCP port
user (empty) Username (optional)
password (empty) Password (optional)
authentication no_auth no_auth or user_password

Authentication

Two modes: no_auth or user_password. API-compatible with Redis AUTH.

Supported Actions

Required Setup

Requires the valkey Python package:

pip install valkey

External Links