Code
Hub
Workspaces
Following
Trending
Connect
MCP
copy
Create free account
hub
/
github.com/ReAPI-com/mcp-openapi
/ CacheEntry
Interface
CacheEntry
src/core/Cache.ts:7–10 ·
view source on GitHub ↗
Source
from the content-addressed store, hash-verified
5
}
6
7
export
interface
CacheEntry<T> {
8
value: T;
9
timestamp: number;
10
}
11
12
export
class
SimpleCache<K, V> {
13
private cache: Map<K, CacheEntry<V>>;
Callers
nothing calls this directly
Calls
no outgoing calls
Tested by
no test coverage detected