You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
36 lines
1008 B
36 lines
1008 B
package kfc |
|
|
|
import ( |
|
"context" |
|
"fmt" |
|
|
|
"go-common/app/interface/main/activity/model/kfc" |
|
) |
|
|
|
func kfcKey(id int64) string { |
|
return fmt.Sprintf("b_kfc_c_%d", id) |
|
} |
|
|
|
func kfcCodeKey(code string) string { |
|
return fmt.Sprintf("b_kfc_code_%s", code) |
|
} |
|
|
|
//go:generate $GOPATH/src/go-common/app/tool/cache/gen |
|
type _cache interface { |
|
// cache: -sync=true |
|
KfcCoupon(c context.Context, id int64) (*kfc.BnjKfcCoupon, error) |
|
} |
|
|
|
//go:generate $GOPATH/src/go-common/app/tool/cache/mc |
|
type _mc interface { |
|
// mc: -key=kfcKey |
|
CacheKfcCoupon(c context.Context, id int64) (*kfc.BnjKfcCoupon, error) |
|
// mc: -key=kfcKey -expire=d.mcKfcExpire -encode=pb |
|
AddCacheKfcCoupon(c context.Context, id int64, val *kfc.BnjKfcCoupon) error |
|
// mc: -key=kfcKey |
|
DelCacheKfcCoupon(c context.Context, id int64) error |
|
// mc: -key=kfcCodeKey |
|
CacheKfcCode(c context.Context, code string) (int64, error) |
|
// mc: -key=kfcCodeKey -expire=d.mcKfcCodeExpire -encode=raw |
|
AddCacheKfcCode(c context.Context, code string, val int64) error |
|
}
|
|
|