Make WordPress Core


Ignore:
Timestamp:
05/02/2023 11:24:52 AM (21 months ago)
Author:
spacedmonkey
Message:

Cache API: Add helper function wp_cache_set_last_changed.

Add a helper function called wp_cache_set_last_changed to set the last changed value for cache groups. This function has a new action called wp_cache_set_last_changed, allowing for developers to cache invalidate when last changed value is changed.

Props tillkruess, spacedmonkey, peterwilsoncc, mukesh27, johnjamesjacoby.
Fixes #57905.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/wp-includes/taxonomy.php

    r55693 r55702  
    50395039 */
    50405040function wp_cache_set_terms_last_changed() {
    5041     wp_cache_set( 'last_changed', microtime(), 'terms' );
     5041    wp_cache_set_last_changed( 'terms' );
    50425042}
    50435043
Note: See TracChangeset for help on using the changeset viewer.