This proposal seeks to integrate two new Site Health checks for Persistent Object Cache and Full Page Cache into WordPress core, targeting the WordPress 6.1 release.
Providing valuable recommendations for site owners is crucial to improving WordPress performance. These two modules are the first in a series of Site Health modules that the performance team is working on. Acknowledging performance problems is the first step to solving them.
The modules were originally proposed and developed by members of the performance team and are available as modules inside the Performance Lab plugin.
Development of the features has been ongoing in the Performance Lab plugin repository on GitHub, where they have been implemented as:
The recently released version 1.2.0 of the Performance Lab plugin contains both modules in a state that is ready to merge into core.
The team is currently migrating the module code into WordPress core patches in 2 Trac tickets:
Any reviews and feedback on the core patches would be greatly appreciated.
We’ve added a series of filters to make messaging and suggestions customizable. These filters can be used by hosting providers to provide their own personalized suggestions on how to address the Site Health feedback.
Hosts may want to replace the notes to recommend their preferred object caching solution:
apply_filters( 'site_status_persistent_object_cache_notes', $notes, $available_services ); Hosts may want to replace the original link to WordPress documentation with a link to their own guide:
apply_filters( 'site_status_persistent_object_cache_url', __('https://wordpress.org/support/article/optimization/#object-caching' )); Hosts or site owners may want to bypass thresholds and force suggestions, or filter them to determine whether to suggest the use of a persistent object cache:
apply_filters( 'site_status_suggest_persistent_object_cache', false ); apply_filters(
'site_status_persistent_object_cache_thresholds',
array(
'alloptions_count' => 500,
'alloptions_bytes' => 100000,
'comments_count' => 1000,
'options_count' => 1000,
'posts_count' => 1000,
'terms_count' => 1000,
'users_count' => 1000,
)
); Developers can filter the threshold below which a response time is considered good:
apply_filters( 'page_cache_good_response_time_threshold', 600 ); You can test the modules in v1.2.0 or later of the Performance Lab plugin. Both modules should be enabled by default, but you can double-check that they are enabled in Settings > Performance:
Once enabled, you can view the test results on the Site Health Status screen at Tools > Site Health > Status.
We encourage you to test these modules (and others) from the Performance Lab Plugin, report any bugs in our GitHub repository, or contribute with fixes and ideas. You can also share any feedback, concerns, or questions to improve these features further in the comments.
Thanks to @shetheliving and @flixos90 for peer review.
With so many website hosting choices, it can be difficult to decide which type of WordPress hosting…
WordCamp Asia 2026 brought the global WordPress community to Mumbai, India, from April 9–11, gathering…
WordCamp Asia 2026 will be available to watch live across three days of streaming, making…
April 9-11, 2026 | Jio World Convention Centre, Mumbai, India WordCamp Asia 2026 brings the…
The second Release Candidate (“RC2”) for WordPress 7.0 is ready for download and testing! This…
When WP Engine acquired WPackagist on March 12, the WordPress developer community faced a familiar…