(params KVParams)
| 96 | } |
| 97 | |
| 98 | func (kv *KVOperator) getCacheKey(params KVParams) string { |
| 99 | return fmt.Sprintf("plugin_kv_storage:%s:group:%s:key:%s", kv.pluginSlugName, params.Group, params.Key) |
| 100 | } |
| 101 | |
| 102 | func (kv *KVOperator) setCache(ctx context.Context, params KVParams) { |
| 103 | if kv.cacheTTL < 0 { |
no outgoing calls
no test coverage detected