You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
44 lines
734 B
44 lines
734 B
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 |
|
}
|
|
|