MCPcopy
hub / github.com/moby/moby / memoryStore

Struct memoryStore

daemon/container/memory_store.go:8–11  ·  view source on GitHub ↗

memoryStore implements a Store in memory.

Source from the content-addressed store, hash-verified

6
7// memoryStore implements a Store in memory.
8type memoryStore struct {
9 s map[string]*Container
10 sync.RWMutex
11}
12
13// NewMemoryStore initializes a new memory store.
14func NewMemoryStore() Store {

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected