You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: 15/umbraco-cms/reference/notifications/contentservice-notifications.md
+2-2Lines changed: 2 additions & 2 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -217,8 +217,8 @@ Child scope will inherit the parent Scope's notification object which means if a
217
217
218
218
**Why would one want to suppress events?**
219
219
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.
221
221
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.
Copy file name to clipboardExpand all lines: 15/umbraco-cms/reference/notifications/hot-vs-cold-restarts.md
+6-6Lines changed: 6 additions & 6 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -4,32 +4,32 @@ description: When rebooting an Umbraco CMS website it is common to distinguish b
4
4
5
5
# Hot vs. cold restarts
6
6
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.
8
8
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.
11
11
12
12
## Hot start
13
13
14
14
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**.
15
15
16
16
## Cold start
17
17
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.
19
19
20
20
## Troubleshooting slow startup
21
21
22
22
Different things could be in play when your site is slow to startup after a reboot/restart.
23
23
24
24
Below is a list of some of the more common reasons:
25
25
26
-
*NuCache needs to rebuild (cold restart).
26
+
*The search indexes need to rebuild (cold restart).
27
27
* Examine indexes need to rebuild - for large sites, this can take some time.
28
28
* The custom code on the website is not optimized and does not live up to .NET standards.
29
29
30
30
## In Memory Auto
31
31
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.
33
33
34
34
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.
Copy file name to clipboardExpand all lines: 15/umbraco-cms/reference/notifications/mediaservice-notifications.md
+2-2Lines changed: 2 additions & 2 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -128,8 +128,8 @@ Child scope will inherit the parent Scope's notification object which means if a
128
128
129
129
**Why would one want to suppress events?**
130
130
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.
132
132
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.
Copy file name to clipboardExpand all lines: 15/umbraco-cms/reference/notifications/memberservice-notifications.md
+2-2Lines changed: 2 additions & 2 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -69,8 +69,8 @@ Child scope will inherit the parent Scope's notification object which means if a
69
69
70
70
**Why would one want to suppress events?**
71
71
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.
73
73
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.
0 commit comments