mc.cache.go 3.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134
  1. // Code generated by $GOPATH/src/go-common/app/tool/cache/mc. DO NOT EDIT.
  2. /*
  3. Package archive is a generated mc cache package.
  4. It is generated from:
  5. type _mc interface {
  6. // mc: -key=staffKey
  7. CacheStaffData(c context.Context, key int64) ([]*arcMdl.Staff, error)
  8. // 这里也支持自定义注释 会替换默认的注释
  9. // mc: -key=staffKey -expire=3 -encode=json|gzip
  10. AddCacheStaffData(c context.Context, key int64, value []*arcMdl.Staff) error
  11. // mc: -key=staffKey
  12. DelCacheStaffData(c context.Context, key int64) error
  13. //mc: -key=viewPointCacheKey -expire=_viewPointExp -encode=json
  14. AddCacheViewPoint(c context.Context, aid int64, vp *arcMdl.ViewPointRow, cid int64) (err error)
  15. //mc: -key=viewPointCacheKey
  16. CacheViewPoint(c context.Context, aid int64, cid int64) (vp *arcMdl.ViewPointRow, err error)
  17. }
  18. */
  19. package archive
  20. import (
  21. "context"
  22. "fmt"
  23. arcMdl "go-common/app/interface/main/creative/model/archive"
  24. "go-common/library/cache/memcache"
  25. "go-common/library/log"
  26. "go-common/library/stat/prom"
  27. )
  28. var _ _mc
  29. // CacheStaffData get data from mc
  30. func (d *Dao) CacheStaffData(c context.Context, id int64) (res []*arcMdl.Staff, err error) {
  31. conn := d.mc.Get(c)
  32. defer conn.Close()
  33. key := staffKey(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:CacheStaffData")
  41. log.Errorv(c, log.KV("CacheStaffData", fmt.Sprintf("%+v", err)), log.KV("key", key))
  42. return
  43. }
  44. res = []*arcMdl.Staff{}
  45. err = conn.Scan(reply, &res)
  46. if err != nil {
  47. prom.BusinessErrCount.Incr("mc:CacheStaffData")
  48. log.Errorv(c, log.KV("CacheStaffData", fmt.Sprintf("%+v", err)), log.KV("key", key))
  49. return
  50. }
  51. return
  52. }
  53. // AddCacheStaffData 这里也支持自定义注释 会替换默认的注释
  54. func (d *Dao) AddCacheStaffData(c context.Context, id int64, val []*arcMdl.Staff) (err error) {
  55. if len(val) == 0 {
  56. return
  57. }
  58. conn := d.mc.Get(c)
  59. defer conn.Close()
  60. key := staffKey(id)
  61. item := &memcache.Item{Key: key, Object: val, Expiration: 3, Flags: memcache.FlagJSON | memcache.FlagGzip}
  62. if err = conn.Set(item); err != nil {
  63. prom.BusinessErrCount.Incr("mc:AddCacheStaffData")
  64. log.Errorv(c, log.KV("AddCacheStaffData", fmt.Sprintf("%+v", err)), log.KV("key", key))
  65. return
  66. }
  67. return
  68. }
  69. // DelCacheStaffData delete data from mc
  70. func (d *Dao) DelCacheStaffData(c context.Context, id int64) (err error) {
  71. conn := d.mc.Get(c)
  72. defer conn.Close()
  73. key := staffKey(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:DelCacheStaffData")
  80. log.Errorv(c, log.KV("DelCacheStaffData", fmt.Sprintf("%+v", err)), log.KV("key", key))
  81. return
  82. }
  83. return
  84. }
  85. // AddCacheViewPoint Set data to mc
  86. func (d *Dao) AddCacheViewPoint(c context.Context, id int64, val *arcMdl.ViewPointRow, cid int64) (err error) {
  87. if val == nil {
  88. return
  89. }
  90. conn := d.mc.Get(c)
  91. defer conn.Close()
  92. key := viewPointCacheKey(id, cid)
  93. item := &memcache.Item{Key: key, Object: val, Expiration: _viewPointExp, Flags: memcache.FlagJSON}
  94. if err = conn.Set(item); err != nil {
  95. prom.BusinessErrCount.Incr("mc:AddCacheViewPoint")
  96. log.Errorv(c, log.KV("AddCacheViewPoint", fmt.Sprintf("%+v", err)), log.KV("key", key))
  97. return
  98. }
  99. return
  100. }
  101. // CacheViewPoint get data from mc
  102. func (d *Dao) CacheViewPoint(c context.Context, id int64, cid int64) (res *arcMdl.ViewPointRow, err error) {
  103. conn := d.mc.Get(c)
  104. defer conn.Close()
  105. key := viewPointCacheKey(id, cid)
  106. reply, err := conn.Get(key)
  107. if err != nil {
  108. if err == memcache.ErrNotFound {
  109. err = nil
  110. return
  111. }
  112. prom.BusinessErrCount.Incr("mc:CacheViewPoint")
  113. log.Errorv(c, log.KV("CacheViewPoint", fmt.Sprintf("%+v", err)), log.KV("key", key))
  114. return
  115. }
  116. res = &arcMdl.ViewPointRow{}
  117. err = conn.Scan(reply, res)
  118. if err != nil {
  119. prom.BusinessErrCount.Incr("mc:CacheViewPoint")
  120. log.Errorv(c, log.KV("CacheViewPoint", fmt.Sprintf("%+v", err)), log.KV("key", key))
  121. return
  122. }
  123. return
  124. }