Caching
Caching is an important part of optimizing your WordPress website, and we make it easy at Kinsta. The following caching options are available within WordPress sites > sitename > Caching:
- Edge caching
- CDN
- Server caching (aka full-page caching)
- Redis
Clearing cache
Note: If your theme or an active plugin on your site has built-in caching, that cache is managed separately from the caching implemented by Kinsta. If you need to clear all cache, we recommend clearing any theme or plugin cache first.
You can clear the cache in your WordPress dashboard, in MyKinsta, or with WP-CLI (in a terminal/SSH client). We outline how to clear each type of cache in their respective guides and combine that information below.
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 the types of cache you want to clear and click Clear cache.
Once the process is complete, a success message will appear.
You can also clear the server cache for a single site within WordPress Sites > sitename > Caching > Server Caching > 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 > Caching > CDN > Clear CDN cache.
Clear cache in your WordPress Dashboard
With the Kinsta MU plugin (installed by default on all Kinsta-hosted sites), you can purge cache right from the WordPress dashboard, including:
- Full-page cache.
- Object cache.
- CDN cache.
- All cache.
Log in 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.
To clear the cache for specific URLs or paths automatically 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 full-page 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
When Kinsta CDN is enabled, you can clear the CDN cache by adding the --cdn
flag:
wp kinsta cache purge --cdn
If you’ve added the Redis addon to your site, you can clear the Redis cache by adding the --object
flag:
wp kinsta cache purge --object
To clear all cache, add the --all
flag:
wp kinsta cache purge --all
Flush your site’s object cache with the following command:
wp cache flush
You can also chain both commands on a single line:
wp kinsta cache purge && wp cache flush
Exit SSH with the following command:
quit
Clear Redis cache with SSH
If you’ve added the Redis addon to your site, you can connect to your server with SSH and flush the Redis cache with the following command:
redis-cli flushall async
Exit SSH with the following command:
quit