MCPcopy
hub / github.com/FlowiseAI/Flowise / set

Method set

packages/server/src/UsageCacheManager.ts:206–210  ·  view source on GitHub ↗
(key: string, value: T, ttl?: number)

Source from the content-addressed store, hash-verified

204 }
205
206 public set<T>(key: string, value: T, ttl?: number) {
207 if (this.cache) {
208 this.cache.set(key, value, ttl)
209 }
210 }
211
212 public mset<T>(keys: [{ key: string; value: T; ttl: number }]) {
213 if (this.cache) {

Callers 15

initMethod · 0.80
updateMethod · 0.80
initMethod · 0.80
_callMethod · 0.80
_callMethod · 0.80
fetchAccessTokenMethod · 0.80
_callMethod · 0.80
getInferenceProfileGeosFunction · 0.80
getImportedModelInfoFunction · 0.80
memoizeEnvConfigFunction · 0.80

Calls

no outgoing calls

Tested by

no test coverage detected