1234567891011121314151617181920212223242526272829303132333435363738394041424344 |
- package dao
- import (
- "context"
- "go-common/app/interface/openplatform/monitor-end/conf"
- "go-common/library/cache/redis"
- "go-common/library/database/sql"
- "go-common/library/log"
- )
- // Dao .
- type Dao struct {
- c *conf.Config
- db *sql.DB
- redis *redis.Pool
- }
- // New .
- func New(c *conf.Config) (d *Dao) {
- d = &Dao{
- c: c,
- db: sql.NewMySQL(c.MySQL),
- redis: redis.NewPool(c.Redis),
- }
- return d
- }
- // Close .
- func (d *Dao) Close() {
- d.db.Close()
- d.redis.Close()
- }
- // Ping .
- func (d *Dao) Ping(c context.Context) (err error) {
- if err = d.pingRedis(c); err != nil {
- log.Error("d.pingRedis error(%+v)", err)
- return
- }
- if err = d.db.Ping(c); err != nil {
- log.Error("d.db.Ping error(%+v)", err)
- }
- return
- }
|