Networks and Sites: Remove invalidation of unused cache keys in clean_blog_cache().

Props spacedmonkey, flixos90, thamaraiselvam.
Fixes #40363.
Built from https://develop.svn.wordpress.org/trunk@46990


git-svn-id: http://core.svn.wordpress.org/trunk@46790 1a063a9b-81f0-0310-95a4-ce76da25c4cd
This commit is contained in:
Sergey Biryukov 2019-12-18 02:59:02 +00:00
parent 4edec193bc
commit 5f6a36ceb6
2 changed files with 1 additions and 3 deletions

View File

@ -1005,8 +1005,6 @@ function clean_blog_cache( $blog ) {
wp_cache_delete( $blog_id . 'short', 'blog-details' );
wp_cache_delete( $domain_path_key, 'blog-lookup' );
wp_cache_delete( $domain_path_key, 'blog-id-cache' );
wp_cache_delete( 'current_blog_' . $blog->domain, 'site-options' );
wp_cache_delete( 'current_blog_' . $blog->domain . $blog->path, 'site-options' );
wp_cache_delete( $blog_id, 'blog_meta' );
/**

View File

@ -13,7 +13,7 @@
*
* @global string $wp_version
*/
$wp_version = '5.4-alpha-46989';
$wp_version = '5.4-alpha-46990';
/**
* Holds the WordPress DB revision, increments when changes are made to the WordPress DB schema.