You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
* If this ends up being problematic, then PHP_OUTPUT_HANDLER_FLUSHABLE could be added to the $flags and the
41
41
* output buffer callback could check if the phase is PHP_OUTPUT_HANDLER_FLUSH and abort any subsequent
42
42
* processing while also emitting a _doing_it_wrong().
43
+
*
44
+
* The output buffer needs to be removable because WordPress calls wp_ob_end_flush_all() and then calls
45
+
* wp_cache_close(). If the buffers are not all flushed before wp_cache_close() is closed, then some output buffer
46
+
* handlers (e.g. for caching plugins) may fail to be able to store the page output in the object cache.
47
+
* See <https://github.com/WordPress/performance/pull/1317#issuecomment-2271955356>.
43
48
*/
44
-
$flags = PHP_OUTPUT_HANDLER_CLEANABLE;
45
-
46
-
// When running unit tests the output buffer must also be removable in order to obtain the buffered output.
47
-
if ( php_sapi_name() === 'cli' ) {
48
-
// TODO: Do any caching plugins need the output buffer to be removable? This is unlikely, as they would pass an output buffer callback to ob_start() instead of calling ob_get_clean() at shutdown.
0 commit comments