Skip to content

Commit 05c0f88

Browse files
committed
Replace NuCache references
1 parent f81a463 commit 05c0f88

File tree

5 files changed

+13
-13
lines changed

5 files changed

+13
-13
lines changed

15/umbraco-cms/fundamentals/code/source-control.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,7 @@ appsettings-schema.json
3838
# Packages created from the backoffice (package.xml/package.zip)
3939
/umbraco/Data/CreatedPackages/
4040
41-
# Temp folder containing Examine indexes, NuCache, MediaCache, etc.
41+
# Temp folder containing Examine indexes, MediaCache, etc.
4242
/umbraco/Data/TEMP/
4343
4444
# SQLite database files

15/umbraco-cms/reference/notifications/contentservice-notifications.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -217,8 +217,8 @@ Child scope will inherit the parent Scope's notification object which means if a
217217

218218
**Why would one want to suppress events?**
219219

220-
The main reason for ever doing this would be performance for bulk operations. The callers hould be aware that suppressing events will lead to an inconsistent content cache state (if notifications are suppressed for content or media services). This is because notifications are used by NuCache to populate the cmsContentNu table and populate the content caches. They are also used to populate the Examine indexes.
220+
The main reason for ever doing this would be performance for bulk operations. The callers hould be aware that suppressing events will lead to an inconsistent content cache state (if notifications are suppressed for content or media services). This is because notifications are used by the Published Content Cache to populate the `cmsContentNu` table and populate the content caches. They are also used to populate the Examine indexes.
221221

222-
So if you did suppress events, it will require you to rebuild the NuCache and examine data manually.
222+
So if you did suppress events, it will require you to rebuild the Published Content Cache and examine data manually.
223223

224224
</details>

15/umbraco-cms/reference/notifications/hot-vs-cold-restarts.md

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -4,32 +4,32 @@ description: When rebooting an Umbraco CMS website it is common to distinguish b
44

55
# Hot vs. cold restarts
66

7-
The load time of your site is dependent on a few different things. When talking about hot vs. cold restarts of your Umbraco CMS website it comes down to whether NuCache needs to be rebuilt.
7+
The load time of your site is dependent on a few different things. When talking about hot vs. cold restarts of your Umbraco CMS website it comes down to whether the search indexes need to be rebuilt.
88

9-
* **Cold restart**: When NuCache needs to rebuild.
10-
* **Hot start**: When NuCache does not need to rebuild.
9+
* **Cold restart**: When the search indexes need to rebuild.
10+
* **Hot start**: When the search indexes do not need to rebuild.
1111

1212
## Hot start
1313

1414
When no cache needs to be rebuild, the restart of your site is generally faster. This is why it is referred to as a **hot restart**.
1515

1616
## Cold start
1717

18-
The **cold restart** expression is generally used for when the NuCache needs to rebuild. This will resolve in a slower startup time, depending on the amount of content on the site. Generally speaking, the more content you have the longer a cold boot will take.
18+
The **cold restart** expression is generally used for when the search indexes need to rebuild. This will resolve in a slower startup time, depending on the amount of content on the site. Generally speaking, the more content you have the longer a cold boot will take.
1919

2020
## Troubleshooting slow startup
2121

2222
Different things could be in play when your site is slow to startup after a reboot/restart.
2323

2424
Below is a list of some of the more common reasons:
2525

26-
* NuCache needs to rebuild (cold restart).
26+
* The search indexes need to rebuild (cold restart).
2727
* Examine indexes need to rebuild - for large sites, this can take some time.
2828
* The custom code on the website is not optimized and does not live up to .NET standards.
2929

3030
## In Memory Auto
3131

32-
Another factor that can slow down time to first page load is the [In Memory Auto models builder](../templating/modelsbuilder/builder-modes.md#in-memory) setting. Having this setting enabled will result in the first page load being slower. The reason for this is that when the first page is requested, the strongly typed models needs to be compiled and loaded in.
32+
Another factor that can slow down time to first page load is the [In Memory Auto models builder](../templating/modelsbuilder/builder-modes.md#in-memory) setting. Having this setting enabled will result in the first page load being slower. The reason for this is that when the first page is requested, the strongly typed models needs to be compiled and loaded in.
3333

3434
This is, however, less noticeable on consecutive restarts, a bit like hot and cold restarts. Since the compiled models will be cached on disk, they don't need to be recompiled until the models change again.
3535

15/umbraco-cms/reference/notifications/mediaservice-notifications.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -128,8 +128,8 @@ Child scope will inherit the parent Scope's notification object which means if a
128128

129129
**Why would one want to suppress events?**
130130

131-
The main reason for ever doing this would be performance for bulk operations. The callers hould be aware that suppressing events will lead to an inconsistent content cache state (if notifications are suppressed for content or media services). This is because notifications are used by NuCache to populate the cmsContentNu table and populate the content caches. They are also used to populate the Examine indexes.
131+
The main reason for ever doing this would be performance for bulk operations. The callers hould be aware that suppressing events will lead to an inconsistent content cache state (if notifications are suppressed for content or media services). This is because notifications are used by the Published Content Cache to populate the `cmsContentNu` table and populate the content caches. They are also used to populate the Examine indexes.
132132

133-
So if you did suppress events, it will require you to rebuild the NuCache and examine data manually.
133+
So if you did suppress events, it will require you to rebuild the Published Content Cache and examine data manually.
134134

135135
</details>

15/umbraco-cms/reference/notifications/memberservice-notifications.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -69,8 +69,8 @@ Child scope will inherit the parent Scope's notification object which means if a
6969

7070
**Why would one want to suppress events?**
7171

72-
The main reason for ever doing this would be performance for bulk operations. The callers hould be aware that suppressing events will lead to an inconsistent content cache state (if notifications are suppressed for content or media services). This is because notifications are used by NuCache to populate the cmsContentNu table and populate the content caches. They are also used to populate the Examine indexes.
72+
The main reason for ever doing this would be performance for bulk operations. The callers hould be aware that suppressing events will lead to an inconsistent content cache state (if notifications are suppressed for content or media services). This is because notifications are used by the Published Content Cache to populate the `cmsContentNu` table and populate the content caches. They are also used to populate the Examine indexes.
7373

74-
So if you did suppress events, it will require you to rebuild the NuCache and examine data manually.
74+
So if you did suppress events, it will require you to rebuild the Published Content Cache and examine data manually.
7575

7676
</details>

0 commit comments

Comments
 (0)