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/configuration/cache-settings.md
+12-13Lines changed: 12 additions & 13 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -6,11 +6,11 @@ description: Information on the Cache settings section
6
6
7
7
## Seeding settings
8
8
9
-
The seeding settings allows you to specify which content should be seeded into your cache, for more information on cache seeding see [Cache Seeding.](../cache/cache-seeding.md)
9
+
The Seeding settings allow you to specify which content should be seeded into your cache. For more information on cache seeding see the [Cache Seeding.](../cache/cache-seeding.md) article.
10
10
11
11
### ContentTypeKeys
12
12
13
-
The `ContentTypeKeys` setting is used to specify which document types should be seeded into the cache. The setting is a comma-separated list of document type keys.
13
+
The `ContentTypeKeys` setting specifies which Document Types should be seeded into the cache. The setting is a comma-separated list of Document Type keys.
14
14
15
15
```json
16
16
"Umbraco": {
@@ -24,8 +24,7 @@ The `ContentTypeKeys` setting is used to specify which document types should be
24
24
25
25
### DocumentBreadthFirstSeedCount
26
26
27
-
The `DocumentBreadthFirstSeedCount` setting is used to specify how many documents should be seeded into the cache when doing a breadth first traversal, the default value is 100.
28
-
27
+
The `DocumentBreadthFirstSeedCount` setting specifies how many documents should be seeded into the cache when doing a breadth-first traversal. The default value is 100.
29
28
30
29
```json
31
30
"Umbraco": {
@@ -39,7 +38,7 @@ The `DocumentBreadthFirstSeedCount` setting is used to specify how many document
39
38
40
39
## MediaBreadthFirstSeedCount
41
40
42
-
The `MediaBreadthFirstSeedCount` setting is used to specify how many media items should be seeded into the cache when doing a breadthfirst traversal, the default value is 100.
41
+
The `MediaBreadthFirstSeedCount` setting specifies how many media items should be seeded into the cache when doing a breadth-first traversal. The default value is 100.
43
42
44
43
```json
45
44
"Umbraco": {
@@ -51,13 +50,13 @@ The `MediaBreadthFirstSeedCount` setting is used to specify how many media items
51
50
}
52
51
```
53
52
54
-
## Cache entry settings
53
+
## Cache Entry settings
55
54
56
-
The entry settings allows you to specify how long cache entries should be kept in the cache, the cache entry settings are identical for documents and media.
55
+
The Entry settings allow you to specify how long cache entries should be kept. The cache entry settings are identical for documents and media.
57
56
58
57
## LocalCacheDuration
59
58
60
-
Specifies the duration that cache entries should be kept in the local memory cache, the default value is 24 hours.
59
+
Specifies the duration that cache entries should be kept in the local memory cache. The default value is 24 hours.
61
60
62
61
```json
63
62
"Umbraco": {
@@ -78,7 +77,7 @@ Specifies the duration that cache entries should be kept in the local memory cac
78
77
79
78
## RemoteCacheDuration
80
79
81
-
Specifies the duration that cache entries should be kept in the remote cache, second level cache, this setting is only relevant if second level cache is configured. The default value is 1 year.
80
+
Specifies the duration that cache entries should be kept in the remote cache, second level cache. This setting is only relevant if a second-level cache is configured. The default value is 1 year.
82
81
83
82
```json
84
83
"Umbraco": {
@@ -99,7 +98,7 @@ Specifies the duration that cache entries should be kept in the remote cache, se
99
98
100
99
## SeedCacheDuration
101
100
102
-
Specifies the duration that seeded cache entries should be kept in the cache. The default value is 1 year.
101
+
Specifies the duration for which seeded cache entries should be kept in the cache. The default value is 1 year.
103
102
104
103
```json
105
104
"Umbraco": {
@@ -120,11 +119,11 @@ Specifies the duration that seeded cache entries should be kept in the cache. Th
120
119
121
120
# NuCache Settings
122
121
123
-
For backwards compatibility reasons, certain settings are still located under the `Umbraco:CMS:NuCache` settings node.
122
+
For backward compatibility reasons, certain settings are under the `Umbraco:CMS:NuCache` settings node.
124
123
125
124
## UsePagedSqlQuery
126
125
127
-
Setting `UsePagedSqlQuery` to `False`your project will use the `Fetch` method instead of the `QueryPaged` method when rebuilding the NuCache files. This will increase performance on bigger Umbraco websites with a lot of content when rebuilding the NuCache.
126
+
Setting `UsePagedSqlQuery` to `False` your project will use the `Fetch` method instead of the `QueryPaged` method when rebuilding the NuCache files. This will increase performance on bigger Umbraco websites with a lot of content when rebuilding the NuCache.
128
127
129
128
```json
130
129
"Umbraco": {
@@ -138,7 +137,7 @@ Setting `UsePagedSqlQuery` to `False` your project will use the `Fetch` method
138
137
```
139
138
## SqlPageSize
140
139
141
-
Specifying the `SqlPageSize` will change the size of the paged sql queries, by default the value is 1000.
140
+
Specifying the `SqlPageSize` will change the size of the paged SQL queries. The default value is 1000.
0 commit comments