45 lines
677 B
Go
45 lines
677 B
Go
package databus
|
|
|
|
import (
|
|
"context"
|
|
|
|
"go-common/app/admin/main/videoup/conf"
|
|
"go-common/library/cache/redis"
|
|
"go-common/library/log"
|
|
)
|
|
|
|
// Dao is redis dao.
|
|
type Dao struct {
|
|
c *conf.Config
|
|
// redis
|
|
redis *redis.Pool
|
|
}
|
|
|
|
var (
|
|
d *Dao
|
|
)
|
|
|
|
// New new a dao.
|
|
func New(c *conf.Config) (d *Dao) {
|
|
d = &Dao{
|
|
c: c,
|
|
redis: redis.NewPool(c.Redis.Track.Config),
|
|
}
|
|
return d
|
|
}
|
|
|
|
// Ping ping redis.
|
|
func (d *Dao) Ping(c context.Context) (err error) {
|
|
conn := d.redis.Get(c)
|
|
if _, err = conn.Do("SET", "ping", "pong"); err != nil {
|
|
log.Error("conn.Do(SET) error(%v)", err)
|
|
}
|
|
conn.Close()
|
|
return
|
|
}
|
|
|
|
//Close close redis conn
|
|
func (d *Dao) Close() {
|
|
d.redis.Close()
|
|
}
|