redis.go 1.1 KB

123456789101112131415161718192021222324252627282930313233343536373839
  1. package utils
  2. import (
  3. "eta/eta_task/utils/redis"
  4. "time"
  5. )
  6. type RedisClient interface {
  7. Get(key string) interface{}
  8. GetStr(key string) string
  9. GetInt64(key string) (int64, error)
  10. GetUInt64(key string) (uint64, error)
  11. RedisBytes(key string) (data []byte, err error)
  12. RedisString(key string) (data string, err error)
  13. RedisInt(key string) (data int, err error)
  14. Put(key string, val interface{}, timeout time.Duration) error
  15. SetNX(key string, val interface{}, timeout time.Duration) bool
  16. Delete(key string) error
  17. IsExist(key string) bool
  18. LPush(key string, val interface{}) error
  19. Brpop(key string, callback func([]byte))
  20. GetRedisTTL(key string) time.Duration
  21. Incrby(key string, num int) (interface{}, error)
  22. Do(commandName string, args ...interface{}) (reply interface{}, err error)
  23. }
  24. func initRedis(redisType string, conf string) (redisClient RedisClient, err error) {
  25. switch redisType {
  26. case "cluster": // 集群
  27. redisClient, err = redis.InitClusterRedis(conf)
  28. default: // 默认走单机
  29. redisClient, err = redis.InitStandaloneRedis(conf)
  30. }
  31. return
  32. }
  33. // RedisNoKeyErr redis没有key的错误
  34. const RedisNoKeyErr = "redis: nil"