redis.go 622 B

1234567891011121314151617181920212223242526
  1. package helpers
  2. //
  3. //import (
  4. // "git-pd.megvii-inc.com/slg-service/pms/conf"
  5. // "git-pd.megvii-inc.com/srgbase/goframework/base"
  6. // "github.com/go-redis/redis"
  7. // "time"
  8. //)
  9. //
  10. //var RedisClient *redis.Client
  11. //
  12. //func init() {
  13. // RedisClient = redis.NewClient(&redis.Options{
  14. // Addr: conf.Conf.Redis.Addr,
  15. // DialTimeout: 10 * time.Second,
  16. // ReadTimeout: 30 * time.Second,
  17. // WriteTimeout: 30 * time.Second,
  18. // PoolSize: 100,
  19. // PoolTimeout: 30 * time.Second,
  20. // })
  21. //
  22. // _, err := RedisClient.Ping().Result()
  23. // if err != nil {
  24. // base.PanicfLogger(nil, "redis connect error: %v", err)
  25. // }
  26. //}