WordPress缓存类WP_Object_Cache
作者:matrix 被围观: 8,114 次 发布时间:2015-07-31 分类:Wordpress 零零星星 | 10 条评论 »
这是一个创建于 3400 天前的主题,其中的信息可能已经有所发展或是发生改变。
WordPress缓存类WP_Object_Cache将数据缓存在内存中,每次请求,都会重新生成缓存。如果服务器支持内存缓存,如memcache 将会提高效率(相同页面处的多次查询数据)。减少数据库的请求次数。流量不大的用处也就不是很明显。
总的来说,没啥用。留作零碎记录
相关函数:
wp_cache_add($key, $data, $flag = '', $expire = 0);//添加缓存
wp_cache_get($key, $flag = '');//得到缓存,没有则返回false
//$key 自定义缓存名称
//$data 缓存数据
//$expire == 缓存 时间 部分可用
//$group $expire 都是可选参数
例子:
if(!$most_viewed = wp_cache_get('widgetPostsViewEcho', 'CACH_DATAViewPosts'))
{
$most_viewed = $wpdb->get_results(".............");// database query
wp_cache_add('widgetPostsViewEcho', $most_viewed, 'CACH_DATAViewPosts',36000);
}
if ($most_viewed) {
foreach ($most_viewed as $viewed) {
$post_ID = $viewed->ID;
$post_views = number_format($viewed->views);
$post_title = esc_attr($viewed->post_title);
$get_permalink = esc_attr(get_permalink($post_ID));
$output .= "<li><a href=\"$get_permalink\">$post_title</a>";
if ($show_date) {
$posted = date(get_option('date_format'), strtotime($viewed->post_date));
$output .= "$beforedate $posted $afterdate";
}
$output .= "$beforecount $post_views $aftercount</li>";
}
}
参考:http://immmmm.com/open-WordPress-object-cache.html
http://www.jb51.net/cms/148531.html
http://www.lianyue.org/2011/2211/
It is a great article. You will surely like this also because it is a great stuff, yeah it’s give us lots of interest and pleasure. Their opportunities are so fantastic and working style so speedy. Thank you for sharing the nice article. 😀 🙂
这个缓存基本没啥用吧。。。
新年快乐~愿贵站新年越来越红火 🙂
谢谢 香菇肥牛 。‘
😀 😀 新年快乐!
技术,感谢分散
我用的是 wp super 总感觉没有好的可以用 国人能做过简单的就好了
这个和WP Super Cache有区别吗?
这玩意 我觉得有点鸡肋。或许我不知道怎么更好的用它
WP Super Cache 是wp插件诶,这个可不是,它只是一个php类
看着都复杂
是群函数吧 哎 差不多