Opened 20 months ago
Last modified 20 months ago
#58000 new enhancement
Run core unit tests against object cache enabled with Redis
Reported by: | spacedmonkey | Owned by: | |
---|---|---|---|
Milestone: | Awaiting Review | Priority: | normal |
Severity: | normal | Version: | |
Component: | Build/Test Tools | Keywords: | |
Focuses: | performance | Cc: |
Description
Redis is a popular technology used for object caching. Redis is used by many large WordPress hosts like pantheon, kinsta and pagely. It may even be more popular than memcache.
WordPress core unit tests, should run against redis as well as memcache, to ensure the core team can spot issues early.
Change History (5)
This ticket was mentioned in Slack in #hosting-community by spacedmonkey. View the logs.
20 months ago
This ticket was mentioned in Slack in #hosting-community by crixu. View the logs.
20 months ago
This ticket was mentioned in Slack in #hosting-community by jadonn. View the logs.
20 months ago
This ticket was mentioned in Slack in #hosting-community by javier. View the logs.
20 months ago
Note: See
TracTickets for help on using
tickets.
My 2c, from @spacedmonkey posting for thoughts in Slack!
Is the intention here to do integration tests against popular Object-Cache drop-in implementations, so Core knows it's broken something (either via a WP bug, or bug in a given object-cache implementation); or do you want to test if Core can use Redis (i.e. data types can be mapped etc?).
As the object cache is just an interface, the irregularities between implementations of any drop-in seem to be the thing that would be uncovered by this. WP doesn’t really “run against memcache / redis”, they run against the object-cache implementation; now, running against 10 object-cache implementations (maybe across file cache, redis, memcache, apcu, mysql (yes, some people do that :P), but IMO the upstream server doesn’t really matter, the implementation is what does) could be cool, as a means of integration testing-- but I think that's really testing the popular implementations and not so much Core.