Changeset 9284 for sites/trunk/wordpress.org/public_html/wp-content/plugins/plugin-directory/jobs/class-manager.php
- Timestamp:
- 11/20/2019 06:59:20 AM (4 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
sites/trunk/wordpress.org/public_html/wp-content/plugins/plugin-directory/jobs/class-manager.php
r8975 r9284 310 310 } 311 311 312 /** 313 * Clear caches for memory management. 314 * 315 * @static 316 * @global \wpdb $wpdb 317 * @global \WP_Object_Cache $wp_object_cache 318 */ 319 public static function clear_memory_heavy_variables() { 320 global $wpdb, $wp_object_cache; 321 322 $wpdb->queries = []; 323 324 if ( is_object( $wp_object_cache ) ) { 325 $wp_object_cache->cache = []; 326 $wp_object_cache->group_ops = []; 327 $wp_object_cache->memcache_debug = []; 328 } 329 } 312 330 313 331 }
Note: See TracChangeset
for help on using the changeset viewer.