MCPcopy Create free account
hub / github.com/FlowiseAI/Flowise / set

Method set

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

Source from the content-addressed store, hash-verified

208 }
209
210 public set<T>(key: string, value: T, ttl?: number) {
211 if (this.cache) {
212 this.cache.set(key, value, ttl)
213 }
214 }
215
216 public mset<T>(keys: [{ key: string; value: T; ttl: number }]) {
217 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