Automattic\WooCommerce\Caching

WPCacheEngine::delete_cached_objectpublicWC 1.0

Removes a cached object from the cache.

Method of the class: WPCacheEngine{}

No Hooks.

Returns

true|false. True if the object is removed from the cache successfully, false otherwise (because the object wasn't cached or for other reason).

Usage

$WPCacheEngine = new WPCacheEngine();
$WPCacheEngine->delete_cached_object( $key, $group ): bool;
$key(string) (required)
They key under which the object is cached.
$group(string)
The group under which the object is cached.
Default: ''

WPCacheEngine::delete_cached_object() code WC 9.9.4

public function delete_cached_object( string $key, string $group = '' ): bool {
	$prefixed_key = self::get_prefixed_key( $key, $group );
	return false !== wp_cache_delete( $prefixed_key, $group );
}