| 18 | } |
| 19 | |
| 20 | type MemoryEngine struct { |
| 21 | mu sync.Mutex |
| 22 | records map[string]*requestTiming |
| 23 | maxRecords int |
| 24 | maxAge time.Duration |
| 25 | } |
| 26 | |
| 27 | func NewMemoryEngine() *MemoryEngine { |
| 28 | return NewMemoryEngineFromConfig(config.SLOStoreConfig{}) |
nothing calls this directly
no outgoing calls
no test coverage detected