Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
10 changes: 10 additions & 0 deletions guides/databases/sqlite.md
Original file line number Diff line number Diff line change
Expand Up @@ -201,3 +201,13 @@ SQLite only has limited support for concurrent database access due to its very c
:::

Having said this, there can indeed be scenarios where SQLite might also be used in production, not as the primary database of a business application, but for edge cases, such as using SQLite as in-memory caches. → [Learn more on the _sqlite.org_ website](https://www.sqlite.org/whentouse.html).

<Since version="10.1.0" package="@sap/cds" /> For such cases, configure the `sqlite:memory` preset, which runs an in-memory SQLite database in all profiles, including production:

::: code-group
```json [package.json]
{ "cds": { "requires": {
"db": "sqlite:memory" // [!code focus]
}}}
```
:::
Loading