Memcached 内存缓存优化 WordPress 自动草稿功能

Memcached 内存缓存可以说是 WPEXP 在使用 WordPress 建站的必选项,不仅可以极大的提升网站速度,将页面缓存到内存,也可以优化 WordPress 很多功能,让你的 WordPress 变得更快,接下来 WPEXP 跟大家分享一下如何使用 Memcached 内存缓存优化 WordPress 自动草稿功能。

WordPress 自动草稿功能


其实跟 Office 一样,WordPress 也有其自动保存备份的机制,在 WordPress 仪表盘(后台)点击新建文章的时候,都会创建一个状态为 auto-draft 的草稿,并且每次点击新建文章的时候都会新建一个,然后 WordPress 会执行一个定时作业 wp_scheduled_auto_draft_delete 将所有 auto-draft 的草稿删除了,这也是 POST ID 不连续的原因之一。

使用内存缓存优化

虽然不会造成什么的问题,但是连续的创建新的 auto-draft 的草稿,然后删除,是一种浪费,所以我们可以使用内存缓存来优化 WordPress 自动草稿功能,下面代码把这个自动草稿放到内存中,一小时内直接使用,不在创建新的。

请复制到当前主题的 functions.php 文件中:

//使用 Memcached 内存缓存优化 WordPress 自动草稿功能 - https://wpexp.cn/111.html
add_action('current_screen', function ($current_screen){
	// 只有新建文章的时候才执行
	if($screen_base != 'post' || $current_screen->post_type == 'attachment' || $current_screen->action != 'add'){
		return;
	}

	//如果内存中已有上次创建的自动草稿
	if($last_post_id = wp_cache_get(get_current_user_id(), 'wpexp_'.$current_screen->post_type.'_last_post_id')){
		$post	= get_post($last_post_id);
		if($post && $post->post_status == 'auto-draft'){
			wp_redirect(admin_url('post.php?post='.$last_post_id.'&action=edit'));	
			exit;
		}
	}

	add_action('admin_footer', function(){
		global $post;
		//将自动草稿ID缓存到内存中
		wp_cache_set(get_current_user_id(), $post->ID, 'wpexp_'.$post->post_type.'_last_post_id', HOUR_IN_SECONDS);
	});
}, 10, 2);