dao.cache.go 1011 B

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