cache.go 1008 B

123456789101112131415161718192021222324252627282930313233343536
  1. package kfc
  2. import (
  3. "context"
  4. "fmt"
  5. "go-common/app/interface/main/activity/model/kfc"
  6. )
  7. func kfcKey(id int64) string {
  8. return fmt.Sprintf("b_kfc_c_%d", id)
  9. }
  10. func kfcCodeKey(code string) string {
  11. return fmt.Sprintf("b_kfc_code_%s", code)
  12. }
  13. //go:generate $GOPATH/src/go-common/app/tool/cache/gen
  14. type _cache interface {
  15. // cache: -sync=true
  16. KfcCoupon(c context.Context, id int64) (*kfc.BnjKfcCoupon, error)
  17. }
  18. //go:generate $GOPATH/src/go-common/app/tool/cache/mc
  19. type _mc interface {
  20. // mc: -key=kfcKey
  21. CacheKfcCoupon(c context.Context, id int64) (*kfc.BnjKfcCoupon, error)
  22. // mc: -key=kfcKey -expire=d.mcKfcExpire -encode=pb
  23. AddCacheKfcCoupon(c context.Context, id int64, val *kfc.BnjKfcCoupon) error
  24. // mc: -key=kfcKey
  25. DelCacheKfcCoupon(c context.Context, id int64) error
  26. // mc: -key=kfcCodeKey
  27. CacheKfcCode(c context.Context, code string) (int64, error)
  28. // mc: -key=kfcCodeKey -expire=d.mcKfcCodeExpire -encode=raw
  29. AddCacheKfcCode(c context.Context, code string, val int64) error
  30. }