redis.go 470B

1234567891011121314
  1. package service
  2. //func RedisClient() *redis.Client {
  3. // address := fmt.Sprintf("%s:%s", beego.AppConfig.String("redishost"), beego.AppConfig.String("redisport"))
  4. // client := redis.NewClient(&redis.Options{
  5. // Addr: address,
  6. // Password: beego.AppConfig.String("redispasswrod"), // no password set
  7. // DB: 0, // use default DB
  8. // })
  9. // pong, err := client.Ping().Result()
  10. // fmt.Println(pong, err)
  11. // return client
  12. //}