dao.go 1.2 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061
  1. package recommend
  2. import (
  3. "time"
  4. "go-common/app/interface/main/app-intl/conf"
  5. "go-common/library/cache/memcache"
  6. "go-common/library/cache/redis"
  7. httpx "go-common/library/net/http/blademaster"
  8. )
  9. // Dao is show dao.
  10. type Dao struct {
  11. // http client
  12. client *httpx.Client
  13. clientAsyn *httpx.Client
  14. // hetongzi
  15. hot string
  16. // bigdata
  17. rcmd string
  18. group string
  19. top string
  20. // redis
  21. redis *redis.Pool
  22. expireRds int
  23. // mc
  24. mc *memcache.Pool
  25. expireMc int32
  26. }
  27. // New new a show dao.
  28. func New(c *conf.Config) (d *Dao) {
  29. d = &Dao{
  30. // http client
  31. client: httpx.NewClient(c.HTTPData),
  32. clientAsyn: httpx.NewClient(c.HTTPClientAsyn),
  33. // hetongzi
  34. hot: c.Host.Hetongzi + _hot,
  35. // bigdata
  36. rcmd: c.Host.Data + _rcmd,
  37. group: c.Host.BigData + _group,
  38. top: c.Host.Data + _top,
  39. // redis
  40. redis: redis.NewPool(c.Redis.Feed.Config),
  41. expireRds: int(time.Duration(c.Redis.Feed.ExpireRecommend) / time.Second),
  42. // mc
  43. mc: memcache.NewPool(c.Memcache.Cache.Config),
  44. expireMc: int32(time.Duration(c.Memcache.Cache.Expire) / time.Second),
  45. }
  46. return
  47. }
  48. // Close close resource.
  49. func (d *Dao) Close() {
  50. if d.redis != nil {
  51. d.redis.Close()
  52. }
  53. if d.mc != nil {
  54. d.mc.Close()
  55. }
  56. }