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

Method get

packages/server/src/UsageCacheManager.ts:185–189  ·  view source on GitHub ↗
(key: string)

Source from the content-addressed store, hash-verified

183 }
184
185 public async get<T>(key: string): Promise<T | null> {
186 if (!this.cache) await this.initialize()
187 const value = await this.cache.get<T>(key)
188 return value
189 }
190
191 public async getTTL(key: string): Promise<number | null> {
192 if (!this.cache) await this.initialize()

Callers 15

configMethod · 0.45
initializeSsoProviderMethod · 0.45
getRefreshTokenMethod · 0.45
getSSOTokenCacheMethod · 0.45
getLLMCacheMethod · 0.45
getEmbeddingCacheMethod · 0.45
removeAllChatMessagesFunction · 0.45
abortTextToSpeechFunction · 0.45
resolveNodeReferenceFunction · 0.45
setupNodeDependenciesFunction · 0.45
processNodeOutputsFunction · 0.45
getRateLimiterMethod · 0.45

Calls 1

initializeMethod · 0.95

Tested by

no test coverage detected