dao.go 981 B

123456789101112131415161718192021222324252627282930313233343536373839404142434445
  1. package bnj
  2. import (
  3. "time"
  4. "go-common/app/interface/main/activity/conf"
  5. "go-common/library/cache/memcache"
  6. "go-common/library/cache/redis"
  7. xhttp "go-common/library/net/http/blademaster"
  8. )
  9. // Dao bnj dao.
  10. type Dao struct {
  11. c *conf.Config
  12. mc *memcache.Pool
  13. redis *redis.Pool
  14. client *xhttp.Client
  15. resetExpire int32
  16. rewardExpire int32
  17. grantCouponURL string
  18. }
  19. // New init bnj dao.
  20. func New(c *conf.Config) *Dao {
  21. d := &Dao{
  22. c: c,
  23. mc: memcache.NewPool(c.Memcache.Like),
  24. redis: redis.NewPool(c.Redis.Config),
  25. client: xhttp.NewClient(c.HTTPClientBnj),
  26. resetExpire: int32(time.Duration(c.Redis.ResetExpire) / time.Second),
  27. rewardExpire: int32(time.Duration(c.Redis.RewardExpire) / time.Second),
  28. }
  29. d.grantCouponURL = d.c.Host.Mall + _grantCouponURL
  30. return d
  31. }
  32. // Close .
  33. func (d *Dao) Close() {
  34. if d.mc != nil {
  35. d.mc.Close()
  36. }
  37. if d.redis != nil {
  38. d.redis.Close()
  39. }
  40. }