dao.go 1.5 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768
  1. package medal
  2. import (
  3. "context"
  4. "time"
  5. "go-common/app/service/main/usersuit/conf"
  6. "go-common/library/cache/memcache"
  7. "go-common/library/database/sql"
  8. bm "go-common/library/net/http/blademaster"
  9. "github.com/bluele/gcache"
  10. )
  11. const (
  12. _sendMsgPath = "/api/notify/send.user.notify.do"
  13. _getWaredFansMedalPath = "/fans_medal/v1/fans_medal/get_weared_medal"
  14. )
  15. // Dao struct info of Dao.
  16. type Dao struct {
  17. db *sql.DB
  18. c *conf.Config
  19. client *bm.Client
  20. // memcache
  21. mc *memcache.Pool
  22. mcExpire int32
  23. pointExpire int32
  24. // send message URI.
  25. sendMsgURI string
  26. // get weared fans medal URI.
  27. getWaredFansMedalURI string
  28. // medalStore
  29. medalStore gcache.Cache
  30. }
  31. // New new a Dao and return.
  32. func New(c *conf.Config) (d *Dao) {
  33. d = &Dao{
  34. c: c,
  35. db: sql.NewMySQL(c.MySQL),
  36. client: bm.NewClient(c.HTTPClient),
  37. // memcache
  38. mc: memcache.NewPool(c.Memcache.Config),
  39. mcExpire: int32(time.Duration(c.Memcache.MedalExpire) / time.Second),
  40. pointExpire: int32(time.Duration(c.Memcache.PointExpire) / time.Second),
  41. sendMsgURI: c.Host.MessageCo + _sendMsgPath,
  42. getWaredFansMedalURI: c.Host.LiveAPICo + _getWaredFansMedalPath,
  43. medalStore: gcache.New(c.MedalCache.Size).LFU().Build(),
  44. }
  45. return
  46. }
  47. // Ping ping health.
  48. func (d *Dao) Ping(c context.Context) (err error) {
  49. return d.pingMC(c)
  50. }
  51. // Close close connections of mc, redis, db.
  52. func (d *Dao) Close() {
  53. if d.mc != nil {
  54. d.mc.Close()
  55. }
  56. if d.db != nil {
  57. d.db.Close()
  58. }
  59. }