memos/store/cache.go

10 lines
141 B
Go
Raw Normal View History

2022-08-07 08:09:43 +08:00
package store
import (
"fmt"
)
2024-04-17 08:56:52 +08:00
func getUserSettingCacheKey(userID int32, key string) string {
2024-05-12 13:19:31 +08:00
return fmt.Sprintf("%d-%s", userID, key)
2023-09-15 08:18:30 +08:00
}