cache.go 139 B

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