Documentation
¶
Index ¶
Constants ¶
This section is empty.
Variables ¶
This section is empty.
Functions ¶
Types ¶
type Client ¶ added in v0.0.47
RedisClientInterface defines the behavior of a Redis client. This interface can be implemented by any Redis client, facilitating testing and different implementations. RedisClient represents a Redis client, providing an interface for operations.
type Config ¶ added in v0.0.47
type Config struct { ClusterMode bool // Whether to use Redis in cluster mode. Address []string // List of Redis server addresses (host:port). Username string // Username for Redis authentication (Redis 6 ACL). Password string // Password for Redis authentication. EnablePipeline bool // Enable pipelining of commands for efficiency. MaxRetries int // Maximum number of retries for a command. DB int // Database number to connect to, for non-cluster mode. PoolSize int // Number of connections to pool. ConnectionTimeout time.Duration // Timeout for connecting to Redis servers. }
RedisConfig defines the configuration parameters for a Redis client, including options for both single-node and cluster mode connections.
Click to show internal directories.
Click to hide internal directories.