Skip to content
Merged
Show file tree
Hide file tree
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
16 changes: 16 additions & 0 deletions 15/umbraco-cms/reference/templating/modelsbuilder/builder-modes.md
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,22 @@ Models Builder can be used in different modes:

The mode is indicated by the `Umbraco:CMS:ModelsBuilder:ModelsMode` key in the configuration (`appsettings.json` files).

**Example `appsettings.json` configuration**

```json
{
"Umbraco": {
"CMS": {
"ModelsBuilder": {
"ModelsMode": "InMemoryAuto"
}
}
}
}
```

Replace `InMemoryAuto` with one of the valid options: `SourceCodeAuto`, `SourceCodeManual`, or `InMemoryAuto` depending on your preferred mode.

## In memory

Corresponds to the `InMemoryAuto` setting value.
Expand Down
16 changes: 16 additions & 0 deletions 16/umbraco-cms/reference/templating/modelsbuilder/builder-modes.md
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,22 @@ Models Builder can be used in different modes:

The mode is indicated by the `Umbraco:CMS:ModelsBuilder:ModelsMode` key in the configuration (`appsettings.json` files).

**Example `appsettings.json` configuration**

```json
{
"Umbraco": {
"CMS": {
"ModelsBuilder": {
"ModelsMode": "InMemoryAuto"
}
}
}
}
```

Replace `InMemoryAuto` with one of the valid options: `SourceCodeAuto`, `SourceCodeManual`, or `InMemoryAuto` depending on your preferred mode.

## In memory

Corresponds to the `InMemoryAuto` setting value.
Expand Down