Make WordPress Core

Opened 15 months ago

Last modified 15 months ago

#58808 new enhancement

Proposal: track object cache type in update checks

Reported by: swissspidy's profile swissspidy Owned by:
Milestone: Awaiting Review Priority: normal
Severity: normal Version:
Component: Upgrade/Install Keywords: 2nd-opinion needs-patch
Focuses: Cc:

Description

Related: #56751, #48116

I think it would be helpful to send the wp_using_ext_object_cache() value as part of the update requests.
We already send the list of installed PHP extensions, so it's possible to know whether e.g. redis or memcached are installed, but not if they are actually used.

Ideally we would also know the exact type of object cache that is being used (e.g. if it's actually redis or memcached or something else). That would be also very useful for the wp cache type command, as suggested here.
This could be done via WP_Object_Cache::get_type() and a wp_cache_type() function for example.

Change History (3)

#1 @spacedmonkey
15 months ago

There is already a project underway for this. See https://github.com/rhubarbgroup/wp-object-cache-info-spec

Basically the idea behind this, is adding a new function called wp_cache_info function into the caching api. This would have information like object cache type. I would like to focus on that first.

#2 @swissspidy
15 months ago

Cool. Looks like that covers quite a lot of stuff. While that proposal is being fleshed out, just adding wp_using_ext_object_cache() would already be a great start. That shouldn't be blocked. The second part could very well be its own ticket afterward.

#3 @westonruter
15 months ago

It would be great to also include information about whether page caching is enabled, such as we detect in Site Health.

Note: See TracTickets for help on using tickets.