...

/

Storing and Posting Data

Storing and Posting Data

Learn how to interact with in-memory storage.

The Nitro server has a built-in storage layer for storing our data. It can be stored in a filesystem, database, or any other external store. Some of the available built-in drivers include Redis, local storage, and memory.

In memory storage

For simplicity and to focus on the server alone, we will use the default in-memory storage. This means our data will be stored locally in memory and will not be persistent. It is not a permanent storage ...