Cache API: Add wp_cache_get_multiple() to core functions.

* `update_object_term_cache`
* `update_meta_cache`
* `_get_non_cached_ids`

See [47938].

Fixes #50352.

Props spacedmonkey, tillkruss, lukecavanagh. 



git-svn-id: https://develop.svn.wordpress.org/trunk@48055 602fd350-edb4-49c9-b593-d223f7449a82
This commit is contained in:
Jake Spurlock
2020-06-16 06:28:57 +00:00
parent acf0f67a43
commit def933ced7
3 changed files with 14 additions and 12 deletions

View File

@@ -926,11 +926,11 @@ function update_meta_cache( $meta_type, $object_ids ) {
return (bool) $check;
}
$cache_key = $meta_type . '_meta';
$ids = array();
$cache = array();
foreach ( $object_ids as $id ) {
$cached_object = wp_cache_get( $id, $cache_key );
$cache_key = $meta_type . '_meta';
$ids = array();
$cache = array();
$cache_values = wp_cache_get_multiple( $object_ids, $cache_key );
foreach ( $cache_values as $id => $cached_object ) {
if ( false === $cached_object ) {
$ids[] = $id;
} else {