1234567891011121314151617181920212223242526 |
- package helpers
- //
- //import (
- // "git-pd.megvii-inc.com/slg-service/pms/conf"
- // "git-pd.megvii-inc.com/srgbase/goframework/base"
- // "github.com/go-redis/redis"
- // "time"
- //)
- //
- //var RedisClient *redis.Client
- //
- //func init() {
- // RedisClient = redis.NewClient(&redis.Options{
- // Addr: conf.Conf.Redis.Addr,
- // DialTimeout: 10 * time.Second,
- // ReadTimeout: 30 * time.Second,
- // WriteTimeout: 30 * time.Second,
- // PoolSize: 100,
- // PoolTimeout: 30 * time.Second,
- // })
- //
- // _, err := RedisClient.Ping().Result()
- // if err != nil {
- // base.PanicfLogger(nil, "redis connect error: %v", err)
- // }
- //}
|