redisutil

package
v0.0.50-alpha.90 Latest Latest
Warning

This package is not in the latest version of its module.

Go to latest
Published: Jun 17, 2025 License: Apache-2.0 Imports: 6 Imported by: 8

Documentation

Index

Constants

View Source
const (
	ClusterMode    = "cluster"    // Cluster mode for Redis.
	SentinelMode   = "sentinel"   // Sentinel mode for Redis.
	StandaloneMode = "standalone" // Standalone mode for Redis.
)

RedisMode

Variables

This section is empty.

Functions

func Check

func Check(ctx context.Context, config *Config) error

CheckRedis checks the Redis connection.

func NewRedisClient

func NewRedisClient(ctx context.Context, config *Config) (redis.UniversalClient, error)

Types

type Config

type Config struct {
	RedisMode string             // RedisMode can be "cluster", "sentinel", or "standalone".
	Address   []string           // List of Redis server addresses (host:port).
	Username  string             // Username for Redis authentication (Redis 6 ACL).
	Password  string             // Password for Redis authentication.
	MaxRetry  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.
	TLS       *xtls.ClientConfig // TLS configuration for secure connections.
	Sentinel  *Sentinel          // Sentinel configuration for high availability.
}

Config defines the configuration parameters for a Redis client, including options for both single-node and cluster mode connections.

type Sentinel

type Sentinel struct {
	MasterName    string   `yaml:"masterName"`
	SentinelAddrs []string `yaml:"sentinelsAddrs"`
}

Jump to

Keyboard shortcuts

? : This menu
/ : Search site
f or F : Jump to
y or Y : Canonical URL