mc.cache.go 1.9 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768
  1. // Code generated by $GOPATH/src/go-common/app/tool/cache/mc. DO NOT EDIT.
  2. /*
  3. Package timemachine is a generated mc cache package.
  4. It is generated from:
  5. type _mc interface {
  6. // mc: -key=timemachineKey -expire=d.mcTmExpire -encode=pb
  7. AddCacheTimemachine(c context.Context, mid int64, data *timemachine.Item) error
  8. // mc: -key=timemachineKey
  9. CacheTimemachine(c context.Context, mid int64) (*timemachine.Item, error)
  10. }
  11. */
  12. package timemachine
  13. import (
  14. "context"
  15. "fmt"
  16. "go-common/app/interface/main/activity/model/timemachine"
  17. "go-common/library/cache/memcache"
  18. "go-common/library/log"
  19. "go-common/library/stat/prom"
  20. )
  21. var _ _mc
  22. // AddCacheTimemachine Set data to mc
  23. func (d *Dao) AddCacheTimemachine(c context.Context, id int64, val *timemachine.Item) (err error) {
  24. if val == nil {
  25. return
  26. }
  27. conn := d.mc.Get(c)
  28. defer conn.Close()
  29. key := timemachineKey(id)
  30. item := &memcache.Item{Key: key, Object: val, Expiration: d.mcTmExpire, Flags: memcache.FlagProtobuf}
  31. if err = conn.Set(item); err != nil {
  32. prom.BusinessErrCount.Incr("mc:AddCacheTimemachine")
  33. log.Errorv(c, log.KV("AddCacheTimemachine", fmt.Sprintf("%+v", err)), log.KV("key", key))
  34. return
  35. }
  36. return
  37. }
  38. // CacheTimemachine get data from mc
  39. func (d *Dao) CacheTimemachine(c context.Context, id int64) (res *timemachine.Item, err error) {
  40. conn := d.mc.Get(c)
  41. defer conn.Close()
  42. key := timemachineKey(id)
  43. reply, err := conn.Get(key)
  44. if err != nil {
  45. if err == memcache.ErrNotFound {
  46. err = nil
  47. return
  48. }
  49. prom.BusinessErrCount.Incr("mc:CacheTimemachine")
  50. log.Errorv(c, log.KV("CacheTimemachine", fmt.Sprintf("%+v", err)), log.KV("key", key))
  51. return
  52. }
  53. res = &timemachine.Item{}
  54. err = conn.Scan(reply, res)
  55. if err != nil {
  56. prom.BusinessErrCount.Incr("mc:CacheTimemachine")
  57. log.Errorv(c, log.KV("CacheTimemachine", fmt.Sprintf("%+v", err)), log.KV("key", key))
  58. return
  59. }
  60. return
  61. }