Skip to content

Commit b31d4e1

Browse files
committed
Merge branch 'next' of github.com:strapi/documentation into next
2 parents 2a81a53 + 8188f04 commit b31d4e1

File tree

3 files changed

+10
-10
lines changed

3 files changed

+10
-10
lines changed

docusaurus/docs/cloud/getting-started/caching.md

Lines changed: 1 addition & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -4,25 +4,19 @@ displayed_sidebar: cloudSidebar
44
sidebar_position: 4
55
tags:
66
- caching
7-
- Content Delivery Network (CDN) caching
7+
- Content Delivery Network (CDN)
88
- Strapi Cloud
99
---
1010

11-
import NotV5 from '/docs/snippets/_not-updated-to-v5.md'
12-
1311
# Caching & Performance
1412

15-
<NotV5/>
16-
1713
For Strapi Cloud applications with large amounts of cacheable content, such as images, videos, and other static assets, enabling CDN (Content Delivery Network) caching via the [`Cache-control` header](https://developer.mozilla.org/en-US/docs/Web/HTTP/Headers/Cache-Control) can help improve application performance.
1814

1915
CDN caching can help improve application performance in a few ways:
2016

2117
* **Reducing Latency**: Caching frequently accessed content on edge servers located closer to the end-users can reduce the time it takes to load content.
2218
* **Offloading Origin Server**: By caching content on edge servers it can offload the origin server, reducing the load and allowing it to focus on delivering more dynamic content.
2319
* **Handling Traffic Spikes**: Help handle traffic spikes by distributing the load across multiple edge servers. This can prevent the origin server from becoming overwhelmed during peak traffic times and ensures a consistent user experience.
24-
* **Minimizing Round-Trips**: By serving content directly from the edge servers, this can reduce the time it takes to load content.
25-
* **Improving Scalability**: Distributing content across multiple edge servers can improve scalability, making the application more reliable and responsive.
2620

2721
## Cache-Control Header in Strapi Cloud
2822

docusaurus/docs/dev-docs/migration/v4-to-v5/breaking-changes/attributes-and-content-types-names-reserved.md

Lines changed: 7 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -42,7 +42,9 @@ The following attribute names can be created on a content type:
4242
- `localizations`
4343
- `strapi_assignee`
4444
- `strapi_stage`
45-
- anything with the prefix `strapi`
45+
- `then`
46+
- `document`
47+
- anything with the prefix `strapi`, `_strapi`, or `__strapi`
4648

4749
Any model name can be prefixed with `strapi`.
4850

@@ -62,9 +64,11 @@ The following attribute names can **not** be created on a content type:
6264
- `localizations`
6365
- `strapi_assignee`
6466
- `strapi_stage`
65-
- `anything` with the prefix `strapi` or `__strapi`
67+
- `then`
68+
- `document`
69+
- anything with the prefix `strapi`, `_strapi`, or `__strapi`
6670

67-
Model names can **not** be prefixed with `strapi` or `__strapi`.
71+
Model names can **not** be prefixed with `strapi`, `_strapi`, or `__strapi`.
6872

6973
</SideBySideColumn>
7074

docusaurus/docs/dev-docs/migration/v4-to-v5/breaking-changes/server-default-log-level.md

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -52,6 +52,8 @@ The log level defaults to `http`. This means that `silly`and `debug` level logs
5252

5353
The log level can be configured either in the `server.js` file as described in the following Manual migration section, or as described in the [middlewares configuration](/dev-docs/configurations/middlewares#logger) documentation.
5454

55+
[See the list of Winston log levels](https://www.npmjs.com/package/winston#logging-levels).
56+
5557
### Manual migration
5658

5759
To migrate to Strapi 5:

0 commit comments

Comments
 (0)