wp_cache_flush()WP 2.0.0

Completely clears the object cache. Deletes all items in the object cache.

1 time — 0.000088 sec (very fast) | 50000 times — 0.54 sec (very fast)

No Hooks.

Returns

bool. True on success, false on failure.

Usage

wp_cache_flush();

Examples

#1 Clear all object cache in WordPress

wp_cache_flush();

Notes

See: WP_Object_Cache::flush()
Global. WP_Object_Cache. $wp_object_cache Object cache global instance.

Changelog

Since 2.0.0 Introduced.

wp_cache_flush() code WP 7.1

function wp_cache_flush() {
	global $wp_object_cache;

	return $wp_object_cache->flush();
}