Make WordPress Core


Ignore:
Timestamp:
08/15/2019 09:08:05 PM (5 years ago)
Author:
kadamwhite
Message:

REST API: Cache results of get_item_schema on controller instances for performance.

Caches the output of get_item_schema() to avoid redundant recomputation of translatable strings and other computed values. This method is called many times per item in each REST request, and the results of the method should not vary between calls.
Additional schema fields are not cached.

Props kadamwhite, joehoyle, TimothyBlynJacobs.
Fixes #47871.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/tests/phpunit/tests/rest-api/rest-posts-controller.php

    r45607 r45811  
    39203920        remove_post_type_support( 'post', 'author' );
    39213921
     3922        // Re-initialize the controller to cache-bust schemas from prior test runs.
     3923        $GLOBALS['wp_rest_server']->override_by_default = true;
     3924        $controller                                     = new WP_REST_Posts_Controller( 'post' );
     3925        $controller->register_routes();
     3926        $GLOBALS['wp_rest_server']->override_by_default = false;
     3927
    39223928        $response = rest_get_server()->dispatch( new WP_REST_Request( 'OPTIONS', '/wp/v2/posts' ) );
    39233929        $data     = $response->get_data();
Note: See TracChangeset for help on using the changeset viewer.