dao.go 835 B

1234567891011121314151617181920212223242526272829303132333435363738394041424344
  1. package dao
  2. import (
  3. "context"
  4. "time"
  5. "go-common/app/service/main/reply-feed/conf"
  6. "go-common/library/cache/redis"
  7. xsql "go-common/library/database/sql"
  8. )
  9. // Dao dao
  10. type Dao struct {
  11. c *conf.Config
  12. redis *redis.Pool
  13. redisReplyZSetExpire int
  14. db *xsql.DB
  15. }
  16. // New init mysql db
  17. func New(c *conf.Config) (dao *Dao) {
  18. dao = &Dao{
  19. c: c,
  20. redis: redis.NewPool(c.Redis),
  21. redisReplyZSetExpire: int(time.Duration(c.RedisExpire.RedisReplyZSetExpire) / time.Second),
  22. db: xsql.NewMySQL(c.MySQL),
  23. }
  24. return
  25. }
  26. // Close close the resource.
  27. func (d *Dao) Close() {
  28. d.redis.Close()
  29. d.db.Close()
  30. }
  31. // Ping dao ping
  32. func (d *Dao) Ping(c context.Context) error {
  33. if err := d.PingRedis(c); err != nil {
  34. return err
  35. }
  36. return d.db.Ping(c)
  37. }