Make WordPress Core


Ignore:
Timestamp:
05/02/2023 11:24:52 AM (23 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/user.php

    r55657 r55702  
    50255025 */
    50265026function wp_cache_set_users_last_changed() {
    5027     wp_cache_set( 'last_changed', microtime(), 'users' );
    5028 }
     5027    wp_cache_set_last_changed( 'users' );
     5028}
Note: See TracChangeset for help on using the changeset viewer.