debian-mirror-gitlab/doc/administration/invalidate_markdown_cache.md

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

31 lines
1 KiB
Markdown
Raw Normal View History

2020-10-24 23:57:45 +05:30
---
2021-04-17 20:07:23 +05:30
stage: Plan
group: Project Management
2022-11-25 23:54:43 +05:30
info: "To determine the technical writer assigned to the Stage/Group associated with this page, see https://about.gitlab.com/handbook/product/ux/technical-writing/#assignments"
2020-10-24 23:57:45 +05:30
type: reference
---
2022-08-13 15:12:31 +05:30
# Markdown cache **(FREE)**
2019-03-02 22:35:43 +05:30
2022-08-13 15:12:31 +05:30
For performance reasons, GitLab caches the HTML version of Markdown text in fields such as:
- Comments.
- Issue descriptions.
- Merge request descriptions.
These cached versions can become outdated, such as when the `external_url` configuration option is changed. Links
2021-03-11 19:13:27 +05:30
in the cached text would still refer to the old URL.
2019-03-02 22:35:43 +05:30
2022-08-13 15:12:31 +05:30
## Invalidate the cache
Pre-requisite:
- You must be an administrator.
To avoid problems caused by cached HTML versions, invalidate the existing cache by increasing the `local_markdown_version`
setting in application settings [using the API](../api/settings.md#change-application-settings):
2019-03-02 22:35:43 +05:30
2020-03-13 15:44:24 +05:30
```shell
2021-02-22 17:27:13 +05:30
curl --request PUT --header "PRIVATE-TOKEN: <your_access_token>" "https://gitlab.example.com/api/v4/application/settings?local_markdown_version=<increased_number>"
2019-03-02 22:35:43 +05:30
```