这篇我们从服务器层面优化 WordPress 的加载速度。推荐使用 PHP7.2 及以上,PHP7 的几个版本 Benchmark 的测试 见这里,也就是版本越高性能越好,WordPress 完全兼容 PHP7。

  • 启用 Zend Opcache
  • 开启 Opcache 的 HugePage
  • 启用 Memcached
  • 其他

启用 Zend Opcache

PHP7 默认支持 Opcache

所以只需在 php.ini 中加入修改以下内容:

1
2
opcache.enable=1
opcache.enable_cli=1

开启 Opcache 的 HugePage

以 Centos6 为例,通过:

$ sudo sysctl vm.nr_hugepages=512

分配 512 个预留的大页内存:

1
2
3
4
5
6
7
$ cat /proc/meminfo | grep Huge
AnonHugePages: 106496 kB
HugePages_Total: 512
HugePages_Free: 504
HugePages_Rsvd: 27
HugePages_Surp: 0
Hugepagesize: 2048 kB

然后在 php.ini 中修改以下内容:

1
opcache.huge_code_pages=1

启用 Memcached

安装 PHP Memcached 扩展:

1
$ sudo yum -y install memcached

Memcached 默认端口为 11211,不建议修改

启用 Memcached 服务:

1
2
$ sudo chkconfig --level 2345 memcached on //开机启动
$ sudo service memcached start

检查当前安装的版本:

1
2
$ telnet 127.0.0.1 11211
$ stats

接下来安装 WordPress 对象缓存插件,将以下文件(命名为object-cache.php)内容复制到 wp-content 目录下即可:

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
<?php
if(isset($_GET['debug']) && $_GET['debug'] == 'sql'){
require_once ( ABSPATH . WPINC . '/cache.php' );
return;
}

if ( !defined( 'WP_CACHE_KEY_SALT' ) )
define( 'WP_CACHE_KEY_SALT', '' );

if ( class_exists( 'Memcached' ) ) {

function wp_cache_add( $key, $data, $group = '', $expire = 0 ) {
global $wp_object_cache;
return $wp_object_cache->add( $key, $data, $group, $expire );
}

function wp_cache_incr( $key, $n = 1, $group = '' ) {
global $wp_object_cache;
return $wp_object_cache->incr( $key, $n, $group );
}

function wp_cache_decr( $key, $n = 1, $group = '' ) {
global $wp_object_cache;
return $wp_object_cache->decr( $key, $n, $group );
}

function wp_cache_close() {
global $wp_object_cache;
return $wp_object_cache->close();
}

function wp_cache_delete( $key, $group = '' ) {
global $wp_object_cache;
return $wp_object_cache->delete( $key, $group );
}

function wp_cache_delete_multi( $keys, $group = '' ) {
global $wp_object_cache;
return $wp_object_cache->delete_multi( $keys, $group );
}

function wp_cache_flush() {
global $wp_object_cache;
return $wp_object_cache->flush();
}

function wp_cache_get( $key, $group = '', $force = false, &$found = null ) {
global $wp_object_cache;
return $wp_object_cache->get( $key, $group, $force, $found );
}

function wp_cache_get_with_cas( $key, $group = '', &$cas_token = null ) {
global $wp_object_cache;
return $wp_object_cache->get_with_cas( $key, $group, $cas_token );
}

function wp_cache_cas( $cas_token, $key, $data, $group = '', $expire = 0 ) {
global $wp_object_cache;
return $wp_object_cache->cas( $cas_token, $key, $data, $group, $expire );
}

function wp_cache_get_multi( $keys, $group = '' ) {
global $wp_object_cache;
return $wp_object_cache->get_multi( $keys, $group );
}


function wp_cache_set_multi( $keys, $datas, $group= '', $expire = 0 ) {
global $wp_object_cache;
return $wp_object_cache->set_multi( $keys, $datas, $group, $expire);
}

function wp_cache_init() {
global $wp_object_cache;
$wp_object_cache = new WP_Object_Cache();
}

function wp_cache_replace( $key, $data, $group = '', $expire = 0 ) {
global $wp_object_cache;
return $wp_object_cache->replace( $key, $data, $group, $expire );
}

function wp_cache_set( $key, $data, $group = '', $expire = 0 ) {
global $wp_object_cache;

if ( defined( 'WP_INSTALLING' ) == false ) {
return $wp_object_cache->set( $key, $data, $group, $expire );
} else {
return $wp_object_cache->delete( $key, $group );
}
}

function wp_cache_switch_to_blog( $blog_id ) {
global $wp_object_cache;

return $wp_object_cache->switch_to_blog( $blog_id );
}

function wp_cache_add_global_groups( $groups ) {
global $wp_object_cache;
$wp_object_cache->add_global_groups( $groups );
}

function wp_cache_add_non_persistent_groups( $groups ) {
global $wp_object_cache;
$wp_object_cache->add_non_persistent_groups( $groups );
}

function wordpress_memcached_get_stats() {
global $wp_object_cache;
return $wp_object_cache->stats();
}

class WP_Object_Cache {
private $global_groups = array();
private $no_mc_groups = array();
private $cache = array();
private $mc = null;

function add( $id, $data, $group = 'default', $expire = 0 ) {
$key = $this->key( $id, $group );

if ( is_object( $data ) ) {
$data = clone $data;
}

if ( in_array( $group, $this->no_mc_groups ) ) {
$this->cache[ $key ] = $data;
return true;
} elseif ( isset( $this->cache[ $key ] ) && $this->cache[ $key ] !== false ) {
return false;
}

$result = $this->mc->add( $key, $data, $expire );

if ( false !== $result ) {
$this->cache[ $key ] = $data;
}

return $result;
}

function add_global_groups( $groups ) {
if ( ! is_array( $groups ) ) {
$groups = (array) $groups;
}

$this->global_groups = array_merge( $this->global_groups, $groups );
$this->global_groups = array_unique( $this->global_groups );
}

function add_non_persistent_groups( $groups ) {
if ( ! is_array( $groups ) ) {
$groups = (array) $groups;
}

$this->no_mc_groups = array_merge( $this->no_mc_groups, $groups );
$this->no_mc_groups = array_unique( $this->no_mc_groups );
}

function incr( $id, $n = 1, $group = 'default' ) {
$key = $this->key( $id, $group );

return $this->mc->increment( $key, $n );
}

function decr( $id, $n = 1, $group = 'default' ) {
$key = $this->key( $id, $group );

return $this->mc->decrement( $key, $n );
}

function close() {
$this->mc->quit();
}

function delete( $id, $group = 'default' ) {

$key = $this->key( $id, $group );

unset( $this->cache[ $key ] );

if ( in_array( $group, $this->no_mc_groups ) ) {
return true;
}

return $this->mc->delete( $key );
}

function delete_multi($ids, $group = 'default'){
$keys = array_map(function($id) use ($group){ return $this->key( $id, $group ); }, $ids);

if ( in_array( $group, $this->no_mc_groups ) ) {
return true;
}

foreach ($keys as $key) {
unset( $this->cache[ $key ] );
}

$result = $this->mc->deleteMulti( $keys );

return $result;
}

function flush() {
return $this->mc->flush();
}

function get( $id, $group = 'default', $force = false, &$found = null ) {
$key = $this->key( $id, $group );

if ( isset( $this->cache[ $key ] ) && ( ! $force || in_array( $group, $this->no_mc_groups ) ) ) {
if ( is_object( $this->cache[ $key ] ) ) {
$value = clone $this->cache[ $key ];
} else {
$value = $this->cache[ $key ];
}
$found = true;
} else if ( in_array( $group, $this->no_mc_groups ) ) {
$value = false;
$found = true;
} else {
$value = $this->mc->get( $key );
$found = true;
if ($this->mc->getResultCode() == Memcached::RES_NOTFOUND) {
$value = false;
$found = false;
}

$this->cache[ $key ] = $value;
}

return $value;
}

function get_with_cas( $id, $group = 'default', &$cas_token=null){
$key = $this->key( $id, $group );

if(defined('Memcached::GET_EXTENDED')) {
$result = $this->mc->get($key, null, Memcached::GET_EXTENDED);

if ($this->mc->getResultCode() == Memcached::RES_NOTFOUND) {
$value = false;
}else{
$value = $result['value'];
$cas_token = $result['cas'];
}
}else{
$value = $this->mc->get($key, null, $cas_token);

if ($this->mc->getResultCode() == Memcached::RES_NOTFOUND) {
$value = false;
}
}

return $value;
}

function cas( $cas_token, $id, $data, $group = 'default', $expire = 0 ) {
$key = $this->key( $id, $group );

if ( is_object( $data ) ) {
$data = clone $data;
}

$this->cache[ $key ] = $data;

return $this->mc->cas( $cas_token, $key, $data, $expire );
}

function get_multi( $ids, $group = 'default' ) {
if ( in_array( $group, $this->no_mc_groups )){
return false;
}

$keys = array_map(function($id) use ($group){
return $this->key( $id, $group );
}, $ids);

$key_ids = array_combine($keys, $ids);

// $version = intval($this->mc->getVersion());
// if ($version < 3) {
// $results = $this->mc->getMulti( $keys, $cas_tokens, Memcached::GET_PRESERVE_ORDER );
// } else {
// $results = $this->mc->getMulti( $keys, Memcached::GET_PRESERVE_ORDER);
// }

$results = $this->mc->getMulti($keys);

if($results){
$returns = array();
foreach ($key_ids as $key=>$id) {
if(isset($results[$key])){
$this->cache[ $key ] = $results[$key];
$returns[$id] = $results[$key];
}
}

return $returns;
}

return $results;
}

function key( $id, $group ) {
if ( empty( $group ) ) {
$group = 'default';
}

if ( false !== array_search( $group, $this->global_groups ) ) {
$prefix = $this->global_prefix;
} else {
$prefix = $this->blog_prefix;
}

return preg_replace( '/\s+/', '', WP_CACHE_KEY_SALT . "$prefix$group:$id" );
}

function replace( $id, $data, $group = 'default', $expire = 0 ) {
$key = $this->key( $id, $group );

if ( is_object( $data ) ) {
$data = clone $data;
}

$result = $this->mc->replace( $key, $data, $expire );

if ( false !== $result ) {
$this->cache[ $key ] = $data;
}

return $result;
}

function set( $id, $data, $group = 'default', $expire = 0 ) {
$key = $this->key( $id, $group );

if ( is_object( $data ) ) {
$data = clone $data;
}

$this->cache[ $key ] = $data;

if ( in_array( $group, $this->no_mc_groups ) ) {
return true;
}

return $this->mc->set( $key, $data, $expire );
}

function set_multi( $ids, $datas, $group = 'default', $expire = 0 ) {

if ( in_array( $group, $this->no_mc_groups ) ) {
return true;
}

$keys = array_map(function($id) use ($group){
return $this->key( $id, $group );
}, $ids);

foreach ($keys as $i=>$key) {
$this->cache[ $key ] = $datas[$i];
}

$items = array_combine($keys, $datas);

$result = $this->mc->setMulti( $items, $expire );

return $result;
}

function switch_to_blog( $blog_id ) {
global $table_prefix;
$blog_id = (int) $blog_id;
$this->blog_prefix = ( is_multisite() ? $blog_id : $table_prefix ) . ':';
}

function colorize_debug_line( $line ) {
$colors = array(
'get' => 'green',
'set' => 'purple',
'add' => 'blue',
'delete' => 'red'
);

$cmd = substr( $line, 0, strpos( $line, ' ' ) );

$cmd2 = "<span style='color:{$colors[$cmd]}'>$cmd</span>";

return $cmd2 . substr( $line, strlen( $cmd ) ) . "\n";
}

function stats() {
$stats_text = '';

$stats = $this->mc->getStats();
foreach ( $stats as $key => $details ) {
$stats_text .= 'memcached: ' . $key . "\n\r";
foreach ( $details as $name => $value ) {
$stats_text .= $name . ': ' . $value . "\n\r";
}
$stats_text .= "\n\r";
}

return $stats_text;
}

function get_mc(){
return $this->mc;
}



function failure_callback( $host, $port ) {
}

function __construct() {

$this->mc = new Memcached();
$this->mc ->setOption(Memcached::OPT_LIBKETAMA_COMPATIBLE, true);

if(!$this->mc->getServerList()){
$this->mc->addServer('127.0.0.1', 11211, 100);
}

// global $memcached_servers;

// if ( isset( $memcached_servers ) ) {
// $buckets = $memcached_servers;
// } else {
// $buckets = array( '127.0.0.1' );
// }

// reset( $buckets );
// if ( is_int( key( $buckets ) ) ) {
// $buckets = array( 'default' => $buckets );
// }

// foreach ( $buckets as $bucket => $servers ) {
// $this->mc[ $bucket ] = new Memcached($bucket);
// $this->mc[ $bucket ] ->setOption(Memcached::OPT_LIBKETAMA_COMPATIBLE, true);

// if(count($this->mc[ $bucket ]->getServerList())){
// continue;
// }

// $instances = array();
// foreach ( $servers as $server ) {
// @list( $node, $port ) = explode( ':', $server.":" );
// if ( empty( $port ) ) {
// $port = ini_get( 'memcache.default_port' );
// }
// $port = intval( $port );
// if ( ! $port ) {
// $port = 11211;
// }

// $instances[] = array( $node, $port, 1 );
// }
// $this->mc[ $bucket ]->addServers( $instances );
// }

global $blog_id, $table_prefix;

$this->global_prefix = '';
$this->blog_prefix = '';

if ( function_exists( 'is_multisite' ) ) {
$this->global_prefix = ( is_multisite() || defined( 'CUSTOM_USER_TABLE' ) && defined( 'CUSTOM_USER_META_TABLE' ) ) ? '' : $table_prefix;
$this->blog_prefix = ( is_multisite() ? $blog_id : $table_prefix ) . ':';
}

// $this->cache_hits =& $this->stats['get'];
// $this->cache_misses =& $this->stats['add'];
}
}
} else {
// No Memcached
if ( function_exists( 'wp_using_ext_object_cache' ) ) {
// In 3.7+, we can handle this smoothly
wp_using_ext_object_cache( false );
} else {
// In earlier versions, there isn't a clean bail-out method.
wp_die( 'Memcached class not available.' );
}
}

其他

使用新的编译器

推荐 GCC4.8 以上,所以直接用 Centos Latest 吧,Ubuntu 也是

Opcache file cache(试验性)

在 php.ini 中修改以下内容:

1
opcache.file_cache=/tmp

PGO

详细设置见鸟哥的这篇文章 让你的PHP7更快(GCC PGO)

以 WordPress 5.0.2 为优化场景,在编译 PHP 的时候首先:

$ make prof-gen

然后使用 WordPress 来训练 PHP:

1
2
$ sapi/cgi/php-cgi -T 100
/path_to_wordpress/index.php > /dev/null

即让 php-cgi 跑100遍 WordPress 的首页, 从而生成一些在这个过程中的 profile 信息

最后:

1
2
$ make prof-clean
$ make prof-use && make install

这个时候的 PHP7 就是为 WordPress 量身打造的最高性能的编译版本