我在主页上安装了一些社交计数器。该博客显示10个帖子,并通过无限滚动加载更多。
考虑到每个帖子必须做3个请求,并且还必须显示10个帖子 - 这意味着在显示页面之前必须经过30个请求。
使用get_transient / set_transient似乎会立即加载页面但是每小时后,1个人的加载时间会很短 - 只是想知道我是否可以通过使用jQuery检查变量是否更快(如果它们已经改变)有,然后在页面加载后让它做请求。)
我根本不了解jQuery,并希望得到一些帮助。
function getShares($url){
$fbcount = get_transient('share_count');
if ($fbcount !== false) return $fbcount;
$fbcount = 0;
$fql = "SELECT share_count FROM link_stat WHERE url = '".$url."'";
$apifql = "https://api.facebook.com/method/fql.query?format=json&query=".urlencode( $fql );
$json = file_get_contents( $apifql );
$data = json_decode($json);
$fbcount = $data[0]->share_count;
set_transient('share_count', $fbcount, 60*60);
return $fbcount;
}
function getPlus1($url) {
$gpcount = get_transient('plusone_count');
if ($gpcount !== false) return $gpcount;
$gpcount = 0;
$html = file_get_contents( "https://plusone.google.com/_/+1/fastbutton?url=".urlencode($url));
$doc = new DOMDocument(); $doc->loadHTML($html);
$counter=$doc->getElementById('aggregateCount');
$gpcount = $counter->nodeValue;
set_transient('plusone_count', $gpcount, 60*60);
return $gpcount;
}
function getTweets($url){
$tweetcount = get_transient('tweet_count');
if ($tweetcount !== false) return $tweetcount;
$tweetcount = 0;
$json = file_get_contents( "http://urls.api.twitter.com/1/urls/count.json?url=".$url );
$ajsn = json_decode($json, true);
$tweetcount = $ajsn['count'];
set_transient('tweet_count', $tweetcount, 60*60);
return $tweetcount;
}
答案 0 :(得分:0)
将结果存储到数据库,如果结果超过一小时,请重新下载。
(当然,再次使用新数据将其放入数据库)。
你甚至不需要jQuery。