arrow-left

All pages
gitbookPowered by GitBook
1 of 1

Loading...

Memory

Storing a collection in memory

hashtag
Introduction

This is the default storage when no storageEngine directive is given.

hashtag
Usage

hashtag
Create a single memory collection

Tashmet.connect(store.proxy()).then(async tashmet => {
  const collection = await tashmet.db('myDb').createCollection('myCollection');
});