dao.cache.go 2.2 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394
  1. // Code generated by $GOPATH/src/go-common/app/tool/cache/gen. DO NOT EDIT.
  2. /*
  3. Package archive is a generated cache proxy package.
  4. It is generated from:
  5. type _cache interface {
  6. // cache: -singleflight=true -nullcache=[]*arcMdl.Staff{{ID:-1}} -check_null_code=len($)==1&&$[0].ID==-1
  7. StaffData(c context.Context, aid int64) ([]*arcMdl.Staff, error)
  8. ViewPoint(c context.Context, aid int64, cid int64) (vp *arcMdl.ViewPointRow, err error)
  9. }
  10. */
  11. package archive
  12. import (
  13. "context"
  14. arcMdl "go-common/app/interface/main/creative/model/archive"
  15. "go-common/library/net/metadata"
  16. "go-common/library/stat/prom"
  17. "golang.org/x/sync/singleflight"
  18. )
  19. var _ _cache
  20. var cacheSingleFlights = [1]*singleflight.Group{{}}
  21. // StaffData get data from cache if miss will call source method, then add to cache.
  22. func (d *Dao) StaffData(c context.Context, id int64) (res []*arcMdl.Staff, err error) {
  23. addCache := true
  24. res, err = d.CacheStaffData(c, id)
  25. if err != nil {
  26. addCache = false
  27. err = nil
  28. }
  29. defer func() {
  30. if len(res) == 1 && res[0].ID == -1 {
  31. res = nil
  32. }
  33. }()
  34. if len(res) != 0 {
  35. prom.CacheHit.Incr("StaffData")
  36. return
  37. }
  38. var rr interface{}
  39. sf := d.cacheSFStaffData(id)
  40. rr, err, _ = cacheSingleFlights[0].Do(sf, func() (r interface{}, e error) {
  41. prom.CacheMiss.Incr("StaffData")
  42. r, e = d.RawStaffData(c, id)
  43. return
  44. })
  45. res = rr.([]*arcMdl.Staff)
  46. if err != nil {
  47. return
  48. }
  49. miss := res
  50. if len(miss) == 0 {
  51. miss = []*arcMdl.Staff{{ID: -1}}
  52. }
  53. if !addCache {
  54. return
  55. }
  56. d.cache.Do(c, func(c context.Context) {
  57. d.AddCacheStaffData(metadata.WithContext(c), id, miss)
  58. })
  59. return
  60. }
  61. // ViewPoint cache: -singleflight=true -nullcache=[]*arcMdl.Staff{{ID:-1}} -check_null_code=len($)==1&&$[0].ID==-1
  62. func (d *Dao) ViewPoint(c context.Context, id int64, cid int64) (res *arcMdl.ViewPointRow, err error) {
  63. addCache := true
  64. res, err = d.CacheViewPoint(c, id, cid)
  65. if err != nil {
  66. addCache = false
  67. err = nil
  68. }
  69. if res != nil {
  70. prom.CacheHit.Incr("ViewPoint")
  71. return
  72. }
  73. prom.CacheMiss.Incr("ViewPoint")
  74. res, err = d.RawViewPoint(c, id, cid)
  75. if err != nil {
  76. return
  77. }
  78. miss := res
  79. if !addCache {
  80. return
  81. }
  82. d.cache.Do(c, func(c context.Context) {
  83. d.AddCacheViewPoint(metadata.WithContext(c), id, miss, cid)
  84. })
  85. return
  86. }