redisdb/redisdb.go

35 lines
529 B
Go
Raw Permalink Normal View History

2021-08-09 03:36:09 +00:00
package redisdb
import (
"context"
"fmt"
"github.com/go-redis/redis/v8"
)
var (
rdb *redis.Client
)
// Connect ...
func Connect(uri, password string) error {
ctx := context.Background()
rdb = redis.NewClient(&redis.Options{
Addr: uri,
Password: password,
DB: 0, // use default DB
})
// Ping
_, err := rdb.Ping(ctx).Result()
if err != nil {
2022-12-05 07:54:51 +00:00
fmt.Printf("[redisdb] connect to %s error: %s \n", uri, err.Error())
2021-08-09 03:36:09 +00:00
return err
}
2022-12-21 10:45:57 +00:00
fmt.Printf("⚡️[redis]: connected to %s \n", uri)
2021-08-09 03:36:09 +00:00
return nil
}