High-performance export to Redis with support for multiple data structures (strings, hashes, lists, JSON) and pub/sub capabilities. Ideal for caching, session storage, and real-time applications.
open_in_new
Official Documentation
redis.io
Configuration Parameters
| Parameter | Required | Type | Default | Description |
|---|---|---|---|---|
| Host | No | string | localhost | Redis server hostname or IP address. |
| Port | No | int | 6379 | Redis server port. |
| Password | No | string | (empty) | Authentication password for Redis. |
| Database | No | int | 0 | Redis database index (0-15 in default configuration). |
| DataType | No | string | hash | Storage format: string, hash, list, json. |
Internal Behavior
Data Storage Strategies
- Hash: Stores metadata as hashes with fields for each value
- String: Simple string storage for key-value pairs
- List: Pushes data to lists for time-series-like behavior
- JSON: Stores data as JSON strings
Performance Features
- Automatic Reconnection: ConnectionMultiplexer retry settings are enabled