Server Caching

At Kinsta, we implement and manage server caching (aka full-page caching) for all sites server-side. This means there is no need for typical caching plugins.

For more details, please take a look at our detailed post on the topic: Kinsta Handles WordPress Caching So You Don’t Have To.

If you have questions about this, please contact our Support team.

Server Cache Expiration

The cache is set to expire every 1 hour by default, but you can adjust this to be longer if needed. To change the cache expiration:

  1. Log in to MyKinsta.
  2. Navigate to WordPress Sites > sitename > Tools.
  3. Click the Modify button under Server cache, and select Change cache expiration.
  4. In the modal/pop-up that appears, select your desired cache expiration and click the Change expiration button.

For sites that don’t often change, having a longer cache expiration can be beneficial for performance.

Clear Cache in MyKinsta

In MyKinsta, you can clear the server, CDN, and Edge Cache for one or multiple sites, including staging sites, simultaneously from the WordPress Sites page. This also clears the Redis object cache if you’ve added the Redis addon to your site.

Select the checkboxes next to the site(s) you want to clear the cache for, click Actions, and choose Clear cache.

Select which environments you want to clear the cache for.
Select which environments you want to clear the cache for.

Select the types of cache you want to clear and click Clear cache.

Select the types of cache you want to clear.
Select the types of cache you want to clear.

Once the process is complete, a success message will appear.

You can also clear the cache for a single site within WordPress Sites > sitename > Tools > Clear cache. This also clears the Edge Cache if Edge Caching is enabled and the Redis object cache if you’ve added the Redis addon to your site. However, it does not clear the CDN cache, which provides an additional layer of caching for static assets (e.g. images, CSS files, JavaScript files); this needs to be cleared separately within WordPress Sites > sitename > CDN > Clear CDN cache.

Clear cache on the Tools tab in MyKinsta.
Clear cache on the Tools tab in MyKinsta.

Clear Cache in Your WordPress Dashboard

The Kinsta Must Use (MU) plugin is installed by default on all Kinsta-hosted sites. This is not your typical caching plugin, as it works on a server level. It allows you to purge the cache right from the admin bar, including:

  • All cache.
  • Server cache (aka full-page cache).
  • Object cache.
  • CDN cache.

You can also control automatic purge settings when posts and comments are published or updated.

To manage or clear your server cache, login to your WordPress dashboard.

If you need to clear the cache for the entire site, click the Clear Cache link in the admin toolbar near the upper right corner of the page.

Clear cache from your WordPress dashboard with the Kinsta MU plugin.
Clear cache from your WordPress dashboard with the Kinsta MU plugin.

To configure automatic purge settings (automatically clear the cache for specific URLs or paths when you make changes to your site), you can configure those URLs in the Kinsta MU Plugin Settings.

Click Kinsta Cache in the left sidebar and add the URLs you want to purge when updates are made. For more information, check out our guide on Adding Custom Caching URLs in the Kinsta MU plugin.

  • When Edge Caching is enabled on your site, clearing the cache with the Kinsta MU plugin also clears the Edge Cache.
  • When Kinsta’s CDN is enabled, clearing the cache with the Kinsta MU plugin also clears the CDN cache.

Clear Cache With WP-CLI

Connect to your server with SSH and navigate to your site’s document root:

cd public

If the Kinsta Must Use (MU) Plugin is installed on the site, you can clear the site cache and the edge cache (when Edge Caching is enabled) with this command:

wp kinsta cache purge

If you only want to clear the site cache without clearing the edge cache, add the --site flag:

wp kinsta cache purge --site

To clear all cache, add the --all flag:

wp kinsta cache purge --all

Exit SSH with the following command:

quit