Memory - Structure for in memory db
| 9 | |
| 10 | // Memory - Structure for in memory db |
| 11 | type Memory struct { |
| 12 | sync.RWMutex |
| 13 | rid uint64 |
| 14 | aid uint64 |
| 15 | |
| 16 | DB *memdb.MemDB |
| 17 | } |
| 18 | |
| 19 | // New - Creates new database schema in memory |
| 20 | func New(schema *memdb.DBSchema) (*Memory, error) { |
nothing calls this directly
no outgoing calls
no test coverage detected