memos/store/cache.go
2024-04-17 08:56:52 +08:00

9 lines
144 B
Go

package store
import (
"fmt"
)
func getUserSettingCacheKey(userID int32, key string) string {
return fmt.Sprintf("%d-%s-v1", userID, key)
}