Memory
Storing a collection in memory
Introduction
This is the default storage when no storageEngine directive is given.
Usage
Create a single memory collection
Tashmet.connect(store.proxy()).then(async tashmet => {
const collection = await tashmet.db('myDb').createCollection('myCollection');
});