mirror of
https://github.com/gosticks/wordpress-develop.git
synced 2026-04-04 12:44:31 +00:00
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:
@@ -6359,10 +6359,11 @@ function wp_debug_backtrace_summary( $ignore_class = null, $skip_frames = 0, $pr
|
||||
* @return int[] Array of IDs not present in the cache.
|
||||
*/
|
||||
function _get_non_cached_ids( $object_ids, $cache_key ) {
|
||||
$clean = array();
|
||||
foreach ( $object_ids as $id ) {
|
||||
$clean = array();
|
||||
$cache_values = wp_cache_get_multiple( $object_ids, $cache_key );
|
||||
foreach ( $cache_values as $id => $cache_value ) {
|
||||
$id = (int) $id;
|
||||
if ( ! wp_cache_get( $id, $cache_key ) ) {
|
||||
if ( ! $cache_value ) {
|
||||
$clean[] = $id;
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user