redis_go_cluster_adapter.go 946 B

123456789101112131415161718192021222324252627282930313233343536373839404142
  1. package redis
  2. import (
  3. redisc "github.com/chasex/redis-go-cluster"
  4. "github.com/spf13/viper"
  5. "time"
  6. )
  7. // redis-go-cluster适配器
  8. type GoRedisClusterAdapter struct {
  9. cluster *redisc.Cluster
  10. }
  11. // 返回redis-go-cluster适配器新实例
  12. func NewGoRedisClusterAdapter(nodes []string) (IRedisAdapter, error) {
  13. maxActive := viper.GetInt("redis.max_active")
  14. idleTimeout := viper.GetDuration("redis.timeout")
  15. cluster, err := redisc.NewCluster(&redisc.Options{
  16. StartNodes: nodes,
  17. ConnTimeout: 5 * time.Second,
  18. KeepAlive: maxActive,
  19. AliveTime: idleTimeout,
  20. })
  21. if nil != err {
  22. return nil, err
  23. }
  24. return &GoRedisClusterAdapter{
  25. cluster: cluster,
  26. }, nil
  27. }
  28. // 关闭Redis连接
  29. func (a *GoRedisClusterAdapter) Close() error {
  30. a.cluster.Close()
  31. return nil
  32. }
  33. // 执行Redis命令
  34. func (a *GoRedisClusterAdapter) Do(commandName string, args ...interface{}) (interface{}, error) {
  35. return a.cluster.Do(commandName, args...)
  36. }