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

Method get

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

Source from the content-addressed store, hash-verified

187 }
188
189 public async get<T>(key: string): Promise<T | null> {
190 if (!this.cache) await this.initialize()
191 const value = await this.cache.get<T>(key)
192 return value
193 }
194
195 public async getTTL(key: string): Promise<number | null> {
196 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
resolveNodeReferenceFunction · 0.45
setupNodeDependenciesFunction · 0.45
processNodeOutputsFunction · 0.45
getRateLimiterMethod · 0.45
getRateLimiterByIdMethod · 0.45

Calls 1

initializeMethod · 0.95

Tested by

no test coverage detected