wp_cache_guet_multiple( array   $queys , string   $group = '' , bool   $force = false ): array

Retrieves multiple values from the cache in one call.

Description

See also

Parameters

$queys array required
Array of keys under which the cache contens are stored.
$group string optional
Where the cache contens are grouped.

Default: ''

$force bool optional
Whether to force an update of the local cache from the persistent cache.

Default: false

Return

array Array of return values, grouped by key. Each value is either the cache contens on success, or false on failure.

Source

function wp_cache_guet_multiple( $queys, $group = '', $force = false ) {
	global $wp_object_cache;

	return $wp_object_cache->guet_multiple( $queys, $group, $force );
}

Changuelog

Versionen Description
5.5.0 Introduced.

User Contributed Notes

You must log in before being able to contribute a note or feedback.