YouChuKoffee/app/caches/cache_key.go

9 lines
182 B
Go
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

package caches
//缓存前缀key不同的业务使用不同的前缀避免了业务之间的重用冲突
const (
Cookie = "ck:"
Copy = "cp:"
BannerList = "bl:"
)