redis.go 418 B

12345678910111213141516171819202122232425
  1. package global
  2. import (
  3. "context"
  4. "fmt"
  5. "github.com/go-redis/redis/v8"
  6. )
  7. var Rdb *redis.Client
  8. func init() {
  9. //addr := RedisSetting.Addr
  10. //password := RedisSetting.Password
  11. //db := RedisSetting.DB
  12. Rdb = redis.NewClient(&redis.Options{
  13. Addr: "192.168.11.70:6379",
  14. Password: "",
  15. DB: 0,
  16. })
  17. ctx := context.Background()
  18. _, err := Rdb.Ping(ctx).Result()
  19. if err != nil {
  20. fmt.Println(err)
  21. }
  22. }