MCPcopy Create free account
hub / github.com/kataras/iris / memStore

Struct memStore

cache/entry/store.go:18–21  ·  view source on GitHub ↗

memStore is the default in-memory store for the cache entries.

Source from the content-addressed store, hash-verified

16
17// memStore is the default in-memory store for the cache entries.
18type memStore struct {
19 entries map[string]*Entry
20 mu sync.RWMutex
21}
22
23var _ Store = (*memStore)(nil)
24

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected