MCPcopy Create free account
hub / github.com/bloomberg/pystack / LRUCache

Method LRUCache

src/pystack/_pystack/mem.cpp:159–161  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

157}
158
159LRUCache::LRUCache(size_t capacity)
160: d_cache_capacity(capacity)
161, d_size(0){};
162
163void
164LRUCache::put(uintptr_t key, std::vector<char>&& value)

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected