| 5416 | | function _get_non_cached_ids( $object_ids, $cache_key ) { |
| 5417 | | $clean = array(); |
| 5418 | | foreach ( $object_ids as $id ) { |
| 5419 | | $id = (int) $id; |
| 5420 | | if ( ! wp_cache_get( $id, $cache_key ) ) { |
| 5421 | | $clean[] = $id; |
| | 5416 | function _get_non_cached_ids( $object_ids, $group ) { |
| | 5417 | $clean = array(); |
| | 5418 | $object_ids = array_map( $object_ids, 'intval' ); |
| | 5419 | $groups = array( $group => $object_ids ); |
| | 5420 | $cache_result = wp_cache_get_multiple( $groups ); |
| | 5421 | |
| | 5422 | foreach ( $cache_result as $key => $value ) { |
| | 5423 | if ( false === $value ) { |
| | 5424 | $clean[] = $key; |