cache.go 146 B

123456789
  1. package store
  2. import (
  3. "fmt"
  4. )
  5. func getUserSettingV1CacheKey(userID int32, key string) string {
  6. return fmt.Sprintf("%d-%s-v1", userID, key)
  7. }