mc.cache.go 3.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139
  1. // Code generated by $GOPATH/src/go-common/app/tool/cache/mc. DO NOT EDIT.
  2. /*
  3. Package kfc is a generated mc cache package.
  4. It is generated from:
  5. type _mc interface {
  6. // mc: -key=kfcKey
  7. CacheKfcCoupon(c context.Context, id int64) (*kfc.BnjKfcCoupon, error)
  8. // mc: -key=kfcKey -expire=d.mcKfcExpire -encode=pb
  9. AddCacheKfcCoupon(c context.Context, id int64, val *kfc.BnjKfcCoupon) error
  10. // mc: -key=kfcKey
  11. DelCacheKfcCoupon(c context.Context, id int64) error
  12. // mc: -key=kfcCodeKey
  13. CacheKfcCode(c context.Context, code string) (int64, error)
  14. // mc: -key=kfcCodeKey -expire=d.mcKfcCodeExpire -encode=raw
  15. AddCacheKfcCode(c context.Context, code string, val int64) error
  16. }
  17. */
  18. package kfc
  19. import (
  20. "context"
  21. "fmt"
  22. "strconv"
  23. "go-common/app/interface/main/activity/model/kfc"
  24. "go-common/library/cache/memcache"
  25. "go-common/library/log"
  26. "go-common/library/stat/prom"
  27. )
  28. var _ _mc
  29. // CacheKfcCoupon get data from mc
  30. func (d *Dao) CacheKfcCoupon(c context.Context, id int64) (res *kfc.BnjKfcCoupon, err error) {
  31. conn := d.mc.Get(c)
  32. defer conn.Close()
  33. key := kfcKey(id)
  34. reply, err := conn.Get(key)
  35. if err != nil {
  36. if err == memcache.ErrNotFound {
  37. err = nil
  38. return
  39. }
  40. prom.BusinessErrCount.Incr("mc:CacheKfcCoupon")
  41. log.Errorv(c, log.KV("CacheKfcCoupon", fmt.Sprintf("%+v", err)), log.KV("key", key))
  42. return
  43. }
  44. res = &kfc.BnjKfcCoupon{}
  45. err = conn.Scan(reply, res)
  46. if err != nil {
  47. prom.BusinessErrCount.Incr("mc:CacheKfcCoupon")
  48. log.Errorv(c, log.KV("CacheKfcCoupon", fmt.Sprintf("%+v", err)), log.KV("key", key))
  49. return
  50. }
  51. return
  52. }
  53. // AddCacheKfcCoupon Set data to mc
  54. func (d *Dao) AddCacheKfcCoupon(c context.Context, id int64, val *kfc.BnjKfcCoupon) (err error) {
  55. if val == nil {
  56. return
  57. }
  58. conn := d.mc.Get(c)
  59. defer conn.Close()
  60. key := kfcKey(id)
  61. item := &memcache.Item{Key: key, Object: val, Expiration: d.mcKfcExpire, Flags: memcache.FlagProtobuf}
  62. if err = conn.Set(item); err != nil {
  63. prom.BusinessErrCount.Incr("mc:AddCacheKfcCoupon")
  64. log.Errorv(c, log.KV("AddCacheKfcCoupon", fmt.Sprintf("%+v", err)), log.KV("key", key))
  65. return
  66. }
  67. return
  68. }
  69. // DelCacheKfcCoupon delete data from mc
  70. func (d *Dao) DelCacheKfcCoupon(c context.Context, id int64) (err error) {
  71. conn := d.mc.Get(c)
  72. defer conn.Close()
  73. key := kfcKey(id)
  74. if err = conn.Delete(key); err != nil {
  75. if err == memcache.ErrNotFound {
  76. err = nil
  77. return
  78. }
  79. prom.BusinessErrCount.Incr("mc:DelCacheKfcCoupon")
  80. log.Errorv(c, log.KV("DelCacheKfcCoupon", fmt.Sprintf("%+v", err)), log.KV("key", key))
  81. return
  82. }
  83. return
  84. }
  85. // CacheKfcCode get data from mc
  86. func (d *Dao) CacheKfcCode(c context.Context, id string) (res int64, err error) {
  87. conn := d.mc.Get(c)
  88. defer conn.Close()
  89. key := kfcCodeKey(id)
  90. reply, err := conn.Get(key)
  91. if err != nil {
  92. if err == memcache.ErrNotFound {
  93. err = nil
  94. return
  95. }
  96. prom.BusinessErrCount.Incr("mc:CacheKfcCode")
  97. log.Errorv(c, log.KV("CacheKfcCode", fmt.Sprintf("%+v", err)), log.KV("key", key))
  98. return
  99. }
  100. var v string
  101. err = conn.Scan(reply, &v)
  102. if err != nil {
  103. prom.BusinessErrCount.Incr("mc:CacheKfcCode")
  104. log.Errorv(c, log.KV("CacheKfcCode", fmt.Sprintf("%+v", err)), log.KV("key", key))
  105. return
  106. }
  107. r, err := strconv.ParseInt(v, 10, 64)
  108. if err != nil {
  109. prom.BusinessErrCount.Incr("mc:CacheKfcCode")
  110. log.Errorv(c, log.KV("CacheKfcCode", fmt.Sprintf("%+v", err)), log.KV("key", key))
  111. return
  112. }
  113. res = int64(r)
  114. return
  115. }
  116. // AddCacheKfcCode Set data to mc
  117. func (d *Dao) AddCacheKfcCode(c context.Context, id string, val int64) (err error) {
  118. conn := d.mc.Get(c)
  119. defer conn.Close()
  120. key := kfcCodeKey(id)
  121. bs := []byte(strconv.FormatInt(int64(val), 10))
  122. item := &memcache.Item{Key: key, Value: bs, Expiration: d.mcKfcCodeExpire, Flags: memcache.FlagRAW}
  123. if err = conn.Set(item); err != nil {
  124. prom.BusinessErrCount.Incr("mc:AddCacheKfcCode")
  125. log.Errorv(c, log.KV("AddCacheKfcCode", fmt.Sprintf("%+v", err)), log.KV("key", key))
  126. return
  127. }
  128. return
  129. }