cache.go 450 B

123456789101112131415161718192021
  1. package bnj
  2. import "context"
  3. func timeFinishKey() string {
  4. return "time_finish"
  5. }
  6. func timeLessKey() string {
  7. return "time_less"
  8. }
  9. //go:generate $GOPATH/src/go-common/app/tool/cache/mc
  10. type _mc interface {
  11. // mc: -key=timeFinishKey
  12. CacheTimeFinish(c context.Context) (int64, error)
  13. // mc: -key=timeFinishKey
  14. DelCacheTimeFinish(c context.Context) (int64, error)
  15. // mc: -key=timeLessKey
  16. DelCacheTimeLess(c context.Context) (int64, error)
  17. }