dao.cache.go 936 B

12345678910111213141516171819202122232425262728293031323334353637383940414243444546
  1. // Code generated by $GOPATH/src/go-common/app/tool/cache/gen. DO NOT EDIT.
  2. /*
  3. Package kfc is a generated cache proxy package.
  4. It is generated from:
  5. type _cache interface {
  6. // cache: -sync=true
  7. KfcCoupon(c context.Context, id int64) (*kfc.BnjKfcCoupon, error)
  8. }
  9. */
  10. package kfc
  11. import (
  12. "context"
  13. "go-common/app/interface/main/activity/model/kfc"
  14. "go-common/library/stat/prom"
  15. )
  16. var _ _cache
  17. // KfcCoupon get data from cache if miss will call source method, then add to cache.
  18. func (d *Dao) KfcCoupon(c context.Context, id int64) (res *kfc.BnjKfcCoupon, err error) {
  19. addCache := true
  20. res, err = d.CacheKfcCoupon(c, id)
  21. if err != nil {
  22. addCache = false
  23. err = nil
  24. }
  25. if res != nil {
  26. prom.CacheHit.Incr("KfcCoupon")
  27. return
  28. }
  29. prom.CacheMiss.Incr("KfcCoupon")
  30. res, err = d.RawKfcCoupon(c, id)
  31. if err != nil {
  32. return
  33. }
  34. miss := res
  35. if !addCache {
  36. return
  37. }
  38. d.AddCacheKfcCoupon(c, id, miss)
  39. return
  40. }