讓WORDPRESS使用REDIS緩存來進行加速

Redis是一個高級的key-value存儲系統,相似memcached,全部內容都存在內存中,所以每秒鐘能夠超過10萬次GET操做。php

我下面提出的解決方案是在Redis中緩存全部輸出的HTML 內容而無需再讓WordPress重複執行頁面腳本。這裏使用Redis代替Varnish設置簡單,並且可能更快。html

安裝 Redis前端

若是你使用的是 Debian 或者衍生的操做系統可以使用以下命令安裝 Redis:nginx

apt-get install redis-serverweb

或者閱讀 安裝指南redis

使用 Predis 做爲 Redis 的 PHP 客戶端緩存

你須要一個客戶端開發包以便 PHP 能夠鏈接到 Redis 服務上。frontend

這裏咱們推薦 Predis. 上傳 predis.php 到 WordPress 的根目錄。memcached

前端緩存的PHP腳本wordpress

步驟1:在WordPress 的根目錄建立新文件 index-with-redis.php ,內容以下:

<?php

// Change these two variables:

$seconds_of_caching = 60*60*24*7; // 7 days.

$ip_of_this_website = ‘204.62.14.112’;

/*

– This file is written by Jim Westergren, copyright all rights reserved.
– See more here: www.jimwestergren.com/wordpress-with-redis-as-a-frontend-cache/
– The code is free for everyone to use how they want but please mention my name and link to my article when writing about this.
– Change $ip_of_this_website to the IP of your website above.
– Add ?refresh=yes to the end of a URL to refresh it’s cache
– You can also enter the redis client via the command prompt with the command 「redis-cli」 and then remove all cache with the command 「flushdb」.

*/

// Very necessary if you use Cloudfare:

if (isset($_SERVER[‘HTTP_CF_CONNECTING_IP’])) {
$_SERVER[‘REMOTE_ADDR’] = $_SERVER[‘HTTP_CF_CONNECTING_IP’];
}

// This is from WordPress:

define(‘WP_USE_THEMES’, true);

// Start the timer:

function getmicrotime($t) {
list($usec, $sec) = explode(」 「,$t);
return ((float)$usec + (float)$sec);
}

$start = microtime();

// Initiate redis and the PHP client for redis:

include(「predis.php」);
$redis = new PredisClient(」);

// few variables:

$current_page_url = 「http://」.$_SERVER[‘HTTP_HOST’].$_SERVER[‘REQUEST_URI’];

$current_page_url = str_replace(‘?refresh=yes’, 」, $current_page_url);

$redis_key = md5($current_page_url);

// This first case is either manual refresh cache by adding ?refresh=yes after the URL or somebody posting a comment

if (isset($_GET[‘refresh’]) || substr($_SERVER[‘REQUEST_URI’], -12) == ‘?refresh=yes’ || ($_SERVER[‘HTTP_REFERER’] == $current_page_url && $_SERVER[‘REQUEST_URI’] != ‘/’ && $_SERVER[‘REMOTE_ADDR’] != $ip_of_this_website)) {
require(‘./wp-blog-header.php’);
$redis->del($redis_key);

// Second case: cache exist in redis, let’s display it

} else if ($redis->exists($redis_key)) {

$html_of_current_page = $redis->get($redis_key);

echo $html_of_current_page;

echo 「<!– This is cache –>」;

// third: a normal visitor without cache. And do not cache a preview page from the wp-admin:

} else if ($_SERVER[‘REMOTE_ADDR’] != $ip_of_this_website && strstr($current_page_url, ‘preview=true’) == false) {
require(‘./wp-blog-header.php’);
$html_of_current_page = file_get_contents($current_page_url);
$redis->setex($redis_key, $seconds_of_caching, $html_of_current_page);
echo 「<!– Cache has been set –>」;

// last case: the normal WordPress. Should only be called with file_get_contents:

} else {
require(‘./wp-blog-header.php’);
}

// Let’s display some page generation time (note: CloudFlare may strip out comments):

$end = microtime();
$t2 = (getmicrotime($end) – getmicrotime($start));
if ($_SERVER[‘REMOTE_ADDR’] != $ip_of_this_website) {
echo 「<!– Cache system by Jim Westergren. Page generated in 「.round($t2,5).」 seconds. –>」;
}
?>

步驟2:將上述代碼中的 IP 地址替換成你網站的 IP 地址

步驟3:在.htaccess 中將全部出現 index.php 的地方改成 index-with-redis.php ,若是你使用的是 Nginx 則修改 nginx.conf 中的 index.php 爲 index-with-redis.php(並重載 Nginx : killall -s HUP nginx)。

性能測試

1.沒有Redis 的狀況下,平均首頁執行1.614 秒,文章頁0.174 秒(無任何緩存插件)

2.使用Redis 的狀況下,平均頁面執行時間0.00256秒

我已經在個人博客中使用瞭如上的方法進行加速很長時間了,一切運行良好。

其餘建議

個人環境是Nginx + PHP-FPM + APC + Cloudflare + Redis. 安裝在一個 nano VPS 中,無緩存插件。

請確認使用了gzip壓縮,可加快訪問速度。

訪問 wp-admin

要訪問 wp-admin 必須使用 /wp-admin/index.php 代替原來的 /wp-admin/.

相關文章
相關標籤/搜索