Alright, this took way longer than expected but I was able to test the memcached integration with W3TC and… it seems to be working but I’m not 100% sure.
W3TC seems to use its own cache key names (and because there are a lot of items in the cache it would have been quite time consuming to check every single one of them hence why I’m not sure lol), like so for example (truncated for brevity):
array(75) {
[0]=>
string(46) "w3tc_1055152965_0_pgcache_sitemaps_key_version"
[1]=>
string(48)
(...) "w3tc_1055152965_wordpress.local_0_object_78b25acff342bf608cf26254b78c14ad"
[20]=>
string(73)
(...) "w3tc_1055152965__0_pgcache_e5bf78389de0ac7ad7d3e410aaab68ee"
[72]=>
string(73) "w3tc_1055152965_wordpress.local_0_object_cee7f7aa0ef146b3defcdbd7815d3c94"
[73]=>
string(59) "w3tc_1055152965__0_pgcache_5cf3dbb3f0173ed690eaab96c28ad8bd"
[74]=>
string(73) "w3tc_1055152965_wordpress.local_0_object_24323edbccb901e5a0984528a27a01e7"
}
As a sanity check I installed a different plugin (Object Cache for Everyone by fpuenteonline) and I do see the _wpp_cache key in there (truncated for brevity):
Array(139) {
[0]=>
string(35) "wordpressrootwp_wp_userlogins:admin"
[1]=>
string(34) "wordpressrootwp_wp_userslugs:admin"
(...)
[83]=>
string(40) "wordpressrootwp_wp_:transient:_wpp_cache"
(...)
}
As a side note, I also noticed that Automattic’s WP Memcached plugin seems to be broken at the moment (or at least it throws a fatal error on my local setup) so I’m updating the wiki to recommend another plugin instead.