1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950 |
- package dao
- import (
- "context"
- "go-common/library/cache/redis"
- "go-common/library/conf/paladin"
- "go-common/library/queue/databus"
- )
- // Dao dao.
- type Dao struct {
- redis *redis.Pool
- pushBus *databus.Databus
- }
- func checkErr(err error) {
- if err != nil {
- panic(err)
- }
- }
- // New new a dao and return.
- func New() (dao *Dao) {
- var (
- rds struct {
- Push *redis.Config
- }
- dbus struct {
- Push *databus.Config
- }
- )
- checkErr(paladin.Get("redis.toml").UnmarshalTOML(&rds))
- checkErr(paladin.Get("databus.toml").UnmarshalTOML(&dbus))
- dao = &Dao{
- redis: redis.NewPool(rds.Push),
- pushBus: databus.New(dbus.Push),
- }
- return
- }
- // Close close the resource.
- func (d *Dao) Close() {
- d.redis.Close()
- }
- // Ping dao ping.
- func (d *Dao) Ping(c context.Context) error {
- return d.pingRedis(c)
- }
|