MCPcopy Index your code
hub / github.com/SpectoLabs/hoverfly / InMemoryCache

Struct InMemoryCache

core/cache/memory_cache.go:9–12  ·  view source on GitHub ↗

Cache used for storing serialized data in memory

Source from the content-addressed store, hash-verified

7
8// Cache used for storing serialized data in memory
9type InMemoryCache struct {
10 elements map[string][]byte
11 sync.RWMutex
12}
13
14func NewInMemoryCache() *InMemoryCache {
15 var c InMemoryCache

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected