go-common/app/interface/live/live-demo/dao/foo/dao.go

36 lines
544 B
Go
Raw Normal View History

2019-04-22 10:49:16 +00:00
package foo
import (
"context"
"go-common/app/interface/live/live-demo/conf"
"go-common/library/cache/redis"
)
// Dao dao
type Dao struct {
c *conf.Config
redis *redis.Pool
}
// New init
func New(c *conf.Config) (dao *Dao) {
dao = &Dao{
c: c,
redis: redis.NewPool(c.Redis),
}
return
}
// Close close the resource.
func (d *Dao) Close() {
d.redis.Close()
}
// Ping dao ping
func (d *Dao) Ping(c context.Context) error {
// TODO: if you need use mc,redis, please add
_, err := d.redis.Get(c).Do("ping")
return err
}