localcache.go 2.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384
  1. package medal
  2. import (
  3. "context"
  4. "time"
  5. "go-common/library/log"
  6. "go-common/library/stat/prom"
  7. "github.com/bluele/gcache"
  8. "github.com/pkg/errors"
  9. )
  10. func (d *Dao) loadMedal(c context.Context, mid int64) (int64, bool, error) {
  11. nid, nofound, err := d.medalActivatedCache(c, mid)
  12. if err != nil {
  13. return 0, nofound, err
  14. }
  15. d.storeMedal(mid, nid, nofound)
  16. return nid, nofound, nil
  17. }
  18. func (d *Dao) storeMedal(mid int64, nid int64, nofound bool) {
  19. if nofound {
  20. return
  21. }
  22. d.medalStore.SetWithExpire(mid, nid, time.Duration(d.c.MedalCache.Expire))
  23. }
  24. func (d *Dao) localMedal(mid int64) (int64, error) {
  25. prom.CacheHit.Incr("local_medal_cache")
  26. item, err := d.medalStore.Get(mid)
  27. if err != nil {
  28. prom.CacheMiss.Incr("local_medal_cache")
  29. return 0, err
  30. }
  31. nid, ok := item.(int64)
  32. if !ok {
  33. prom.CacheMiss.Incr("local_medal_cache")
  34. return 0, errors.New("Not a medal")
  35. }
  36. return nid, nil
  37. }
  38. // MedalActivatedCache get medal cache.
  39. func (d *Dao) MedalActivatedCache(c context.Context, mid int64) (int64, bool, error) {
  40. nid, err := d.localMedal(mid)
  41. if err != nil {
  42. if err != gcache.KeyNotFoundError {
  43. log.Error("Failed to get medal from local: mid: %d: %+v", mid, err)
  44. }
  45. return d.loadMedal(c, mid)
  46. }
  47. return nid, false, nil
  48. }
  49. // MedalsActivatedCache get multi medals cache.
  50. func (d *Dao) MedalsActivatedCache(c context.Context, mids []int64) (map[int64]int64, []int64, error) {
  51. nids := make(map[int64]int64, len(mids))
  52. lcMissed := make([]int64, 0, len(mids))
  53. for _, mid := range mids {
  54. nid, err := d.localMedal(mid)
  55. if err != nil {
  56. if err != gcache.KeyNotFoundError {
  57. log.Error("Failed to get medal from local: mid: %d: %+v", mid, err)
  58. }
  59. lcMissed = append(lcMissed, mid)
  60. continue
  61. }
  62. nids[mid] = nid
  63. }
  64. if len(lcMissed) == 0 {
  65. return nids, nil, nil
  66. }
  67. mcMedals, mcMissed, err := d.medalsActivatedCache(c, lcMissed)
  68. if err != nil {
  69. return nil, nil, err
  70. }
  71. for mid, nid := range mcMedals {
  72. d.storeMedal(mid, nid, false)
  73. nids[mid] = nid
  74. }
  75. return nids, mcMissed, nil
  76. }