> Portal Navigation: > > - Append `.md` to any URL under `https://dev.wix.com/docs/` to get its markdown version. > - Pages are either content pages (article or reference text) or menu pages (a list of links to child pages). > - To get a menu page, truncate any URL to a parent path and append `.md` (e.g. `https://dev.wix.com/docs/sdk.md`, `https://dev.wix.com/docs/sdk/core-modules.md`). > - Top-level index of all portals: https://dev.wix.com/docs/llms.txt > - Full concatenated docs: https://dev.wix.com/docs/llms-full.txt ## Resource: Control Page Caching Manually ## Article: Control Page Caching Manually ## Article Link: https://dev.wix.com/docs/develop-websites/articles/best-practices/caching/control-page-caching-manually.md ## Article Content: # Control Page Caching Manually Sometimes caching can cause site visitors to see outdated or incorrect content. For such cases you can manually control or disable caching for your site pages. You can manually control page caching by: - Disabling page caching in the editor. - Setting a lifespan for page caches in the editor. - Using code to invalidate page caches when necessary. ## Disable caches or manage the cache lifespan in the editor If the data on your site page changes very frequently, you can disable caching for that page, ensuring your site is always displaying the most up-to-date information. If the data on your page updates regularly, you can set your page's cache to clear and refresh at an interval that matches your needs. To disable or manage caching: 1. In the editor, click the **Pages**  icon on the left sidebar to open the Site Pages panel. 1. Click the **More Actions**  icon for the page you want to control caching, and then select **Settings**. This opens the Page Settings panel for that page. 1. Click **Advanced Settings** and turn on the **Manually control caching for this page** toggle. 1. Open the **How often do you want to reset this page's cache?** dropdown. - To disable caching for the page, select **Never (disable caching)**. - To manage the cache lifespan for the page, select the time interval that best suits your page's needs.
__Important:__ The `invalidateCache()` method invalidates the cache for the whole site, not just the page where you run the code.## See also - [About Caching](https://dev.wix.com/docs/develop-websites/articles/best-practices/caching/about-caching.md) - [About Page Caching](https://dev.wix.com/docs/develop-websites/articles/best-practices/caching/about-page-caching.md) - [Webinar: Planning for scale: large data design considerations](https://youtu.be/BGnpQ_LTHPg?feature=shared&t=1464) - [wix-site-backend API](https://dev.wix.com/docs/velo/apis/wix-site-backend/introduction.md)