WordPress Version: 6.5
/**
* Removes all cache items from the in-memory runtime cache.
*
* Compat function to mimic wp_cache_flush_runtime().
*
* @ignore
* @since 6.0.0
*
* @see wp_cache_flush_runtime()
*
* @return bool True on success, false on failure.
*/
function wp_cache_flush_runtime()
{
if (!wp_cache_supports('flush_runtime')) {
_doing_it_wrong(__FUNCTION__, __('Your object cache implementation does not support flushing the in-memory runtime cache.'), '6.1.0');
return false;
}
return wp_cache_flush();
}