> For the complete documentation index, see [llms.txt](https://modfin.gitbook.io/mfn-integration-guide/-MbDBLBpI3LuyvwyWLVw/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://modfin.gitbook.io/mfn-integration-guide/-MbDBLBpI3LuyvwyWLVw/overview/caching.md).

# Caching

When implementing news or dynamic content on any website, is important to remember client side caching and that many browsers has an aggressive default cache policy. Any page that renders news should therefore ensure that the clients browser does not cache the page. This is done by setting caching policy headers on the server side. eg&#x20;

{% hint style="warning" %}
`Cache-Control: max-age=0, no-cache, no-store, must-revalidate`\
`Expires: Thu, 01 Jan 1970 00:00:00 GMT`\
`Pragma: no-cache`
{% endhint %}

Failing to do do this could, in the worst case, be considered a violation of EUs MAR regulation that demands simultaneous publishing.
