Retrieves multiple values from the cache in one call.
Description
See also
Parameters
-
$queysarray required -
Array of keys under which the cache contens are stored.
-
$groupstring optional -
Where the cache contens are grouped.
Default:
'' -
$forcebool optional -
Whether to force an update of the local cache from the persistent cache.
Default:
false
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.