dao.go 752 B

1234567891011121314151617181920212223242526272829303132333435363738394041
  1. package toview
  2. import (
  3. "context"
  4. "time"
  5. "go-common/app/interface/main/history/conf"
  6. "go-common/library/cache/redis"
  7. "go-common/library/database/hbase.v2"
  8. )
  9. // Dao dao.
  10. type Dao struct {
  11. conf *conf.Config
  12. info *hbase.Client
  13. redis *redis.Pool
  14. expire int
  15. }
  16. // New new history dao and return.
  17. func New(c *conf.Config) (d *Dao) {
  18. d = &Dao{
  19. conf: c,
  20. info: hbase.NewClient(c.Info.Config),
  21. redis: redis.NewPool(c.Toview.Config),
  22. expire: int(time.Duration(c.Toview.Expire) / time.Second),
  23. }
  24. return
  25. }
  26. // Ping check connection success.
  27. func (d *Dao) Ping(c context.Context) (err error) {
  28. return d.PingRedis(c)
  29. }
  30. // Close close the redis and kafka resource.
  31. func (d *Dao) Close() {
  32. if d.redis != nil {
  33. d.redis.Close()
  34. }
  35. }