增加 APCu缓存

This commit is contained in:
Discuz! 2017-02-04 10:54:17 +08:00
parent 2b7f948ec6
commit 0ba78f6b31
5 changed files with 92 additions and 36 deletions

View File

@ -4,7 +4,7 @@
* [Discuz!] (C)2001-2099 Comsenz Inc. * [Discuz!] (C)2001-2099 Comsenz Inc.
* This is NOT a freeware, use is subject to license terms * This is NOT a freeware, use is subject to license terms
* *
* $Id: config_global_default.php 36287 2016-12-12 03:59:05Z nemohou $ * $Id: config_global_default.php 36362 2017-02-04 02:02:03Z nemohou $
*/ */
$_config = array(); $_config = array();
@ -111,11 +111,12 @@ $_config['memory']['memcache']['port'] = 11211; // memcache 服务器端口
$_config['memory']['memcache']['pconnect'] = 1; // memcache 是否长久连接 $_config['memory']['memcache']['pconnect'] = 1; // memcache 是否长久连接
$_config['memory']['memcache']['timeout'] = 1; // memcache 服务器连接超时 $_config['memory']['memcache']['timeout'] = 1; // memcache 服务器连接超时
$_config['memory']['apc'] = 1; // 启动对 apc 的支持 $_config['memory']['apc'] = 1; // 启动对 APC 的支持
$_config['memory']['apcu'] = 1; // 启动对 APCu 的支持
$_config['memory']['xcache'] = 1; // 启动对 xcache 的支持 $_config['memory']['xcache'] = 1; // 启动对 xcache 的支持
$_config['memory']['eaccelerator'] = 1; // 启动对 eaccelerator 的支持 $_config['memory']['eaccelerator'] = 1; // 启动对 eaccelerator 的支持
$_config['memory']['wincache'] = 1; // 启动对 wincache 的支持 $_config['memory']['wincache'] = 1; // 启动对 wincache 的支持
$_config['memory']['yac'] = 1; //启动对 YAC的支持 $_config['memory']['yac'] = 1; //启动对 YAC的支持
// 服务器相关设置 // 服务器相关设置
$_config['server']['id'] = 1; // 服务器编号多webserver的时候用于标识当前服务器的ID $_config['server']['id'] = 1; // 服务器编号多webserver的时候用于标识当前服务器的ID
@ -197,4 +198,4 @@ $_config['input']['compatible'] = 1;
// ) // )
//); //);
?> ?>

View File

@ -4,7 +4,7 @@
* [Discuz!] (C)2001-2099 Comsenz Inc. * [Discuz!] (C)2001-2099 Comsenz Inc.
* This is NOT a freeware, use is subject to license terms * This is NOT a freeware, use is subject to license terms
* *
* $Id: admincp_setting.php 36349 2017-01-16 03:05:23Z nemohou $ * $Id: admincp_setting.php 36362 2017-02-04 02:02:03Z nemohou $
*/ */
if(!defined('IN_DISCUZ') || !defined('IN_ADMINCP')) { if(!defined('IN_DISCUZ') || !defined('IN_ADMINCP')) {
exit('Access Denied'); exit('Access Denied');
@ -2247,6 +2247,11 @@ EOT;
$cache_config['yac'] ? cplang('open') : cplang('closed'), $cache_config['yac'] ? cplang('open') : cplang('closed'),
$cache_type == 'yac' ? $do_clear_link : '--' $cache_type == 'yac' ? $do_clear_link : '--'
); );
$apcu = array('APCu',
$cache_extension['apcu'] ? cplang('setting_memory_php_enable') : cplang('setting_memory_php_disable'),
$cache_config['apcu'] ? cplang('open') : cplang('closed'),
$cache_type == 'apcu' ? $do_clear_link : '--'
);
showtablerow('', array('width="100"', 'width="120"', 'width="120"'), $redis); showtablerow('', array('width="100"', 'width="120"', 'width="120"'), $redis);
showtablerow('', '', $memcache); showtablerow('', '', $memcache);
showtablerow('', '', $apc); showtablerow('', '', $apc);
@ -2254,6 +2259,7 @@ EOT;
showtablerow('', '', $ea); showtablerow('', '', $ea);
showtablerow('', '', $wincache); showtablerow('', '', $wincache);
showtablerow('', '', $yac); showtablerow('', '', $yac);
showtablerow('', '', $apcu);
showtablefooter(); showtablefooter();
if(!isset($setting['memory'])) { if(!isset($setting['memory'])) {
@ -3691,4 +3697,4 @@ function showsetting_threadprfile($authorinfoitems, $template = array()) {
<tr><td colspan="2"><div class="threadprofilenode">'.$buttons.'</div><textarea name="templatenew[top]" id="ttop" class="marginbot" style="width:80%" rows="10" onkeyup="textareasize(this)" onkeydown="textareakey(this, event)">'.$template_top.'</textarea></td></tr>'; <tr><td colspan="2"><div class="threadprofilenode">'.$buttons.'</div><textarea name="templatenew[top]" id="ttop" class="marginbot" style="width:80%" rows="10" onkeyup="textareasize(this)" onkeydown="textareakey(this, event)">'.$template_top.'</textarea></td></tr>';
} }
?> ?>

View File

@ -4,7 +4,7 @@
* [Discuz!] (C)2001-2099 Comsenz Inc. * [Discuz!] (C)2001-2099 Comsenz Inc.
* This is NOT a freeware, use is subject to license terms * This is NOT a freeware, use is subject to license terms
* *
* $Id: discuz_memory.php 31432 2012-08-28 03:04:18Z zhangguosheng $ * $Id: discuz_memory.php 36362 2017-02-04 02:02:03Z nemohou $
*/ */
if(!defined('IN_DISCUZ')) { if(!defined('IN_DISCUZ')) {
@ -29,8 +29,8 @@ class discuz_memory extends discuz_base
$this->extension['xcache'] = function_exists('xcache_get'); $this->extension['xcache'] = function_exists('xcache_get');
$this->extension['eaccelerator'] = function_exists('eaccelerator_get'); $this->extension['eaccelerator'] = function_exists('eaccelerator_get');
$this->extension['wincache'] = function_exists('wincache_ucache_meminfo') && wincache_ucache_meminfo(); $this->extension['wincache'] = function_exists('wincache_ucache_meminfo') && wincache_ucache_meminfo();
$this->extension['xcache'] = function_exists('xcache_get'); $this->extension['yac'] = extension_loaded('Yac');
$this->extension['yac'] = extension_loaded('Yac'); $this->extension['apcu'] = function_exists('apcu_cache_info') && @apcu_cache_info();
} }
public function init($config) { public function init($config) {
@ -54,7 +54,7 @@ class discuz_memory extends discuz_base
} }
} }
foreach(array('apc', 'eaccelerator', 'xcache', 'wincache','yac') as $cache) { foreach(array('apc', 'eaccelerator', 'xcache', 'wincache', 'yac', 'apcu') as $cache) {
if(!is_object($this->memory) && $this->extension[$cache] && $this->config[$cache]) { if(!is_object($this->memory) && $this->extension[$cache] && $this->config[$cache]) {
$class_name = 'memory_driver_'.$cache; $class_name = 'memory_driver_'.$cache;
$this->memory = new $class_name(); $this->memory = new $class_name();
@ -191,4 +191,4 @@ class discuz_memory extends discuz_base
} }
} }
?> ?>

View File

@ -0,0 +1,51 @@
<?php
/**
* [Discuz!] (C)2001-2099 Comsenz Inc.
* This is NOT a freeware, use is subject to license terms
*
* $Id: memory_driver_apc.php 27635 2012-02-08 06:38:31Z zhangguosheng $
*/
if (!defined('IN_DISCUZ')) {
exit('Access Denied');
}
class memory_driver_apcu {
public function init($config) {
}
public function get($key) {
return apcu_fetch($key);
}
public function getMulti($keys) {
$result = array();
foreach($keys as $key) {
$result[$key] = apcu_fetch($key);
}
return $result;
}
public function set($key, $value, $ttl = 0) {
return apcu_store($key, $value, $ttl);
}
public function rm($key) {
return apcu_delete($key);
}
public function clear() {
return apcu_clear_cache('user');
}
public function inc($key, $step = 1) {
return apcu_inc($key, $step) !== false ? apcu_fetch($key) : false;
}
public function dec($key, $step = 1) {
return apcu_dec($key, $step) !== false ? apcu_fetch($key) : false;
}
}

View File

@ -6,18 +6,16 @@
* *
* $Id: memory_driver_yac.php 27635 2017-02-02 17:02:46Z NaiXiaoxIN $ * $Id: memory_driver_yac.php 27635 2017-02-02 17:02:46Z NaiXiaoxIN $
*/ */
if (!defined('IN_DISCUZ')) {
if(!defined('IN_DISCUZ')) {
exit('Access Denied'); exit('Access Denied');
} }
class memory_driver_yac class memory_driver_yac {
{
private $object = null; private $object = null;
public function init($config) { public function init($config) {
$this->object = new yac(); $this->object = new yac();
} }
public function get($key) { public function get($key) {
@ -25,13 +23,13 @@ class memory_driver_yac
} }
public function getMulti($keys) { public function getMulti($keys) {
$result = $this->object->get($keys); $result = $this->object->get($keys);
foreach ($result as $key => $value) { foreach ($result as $key => $value) {
if($value===false){ if ($value === false) {
unset($result[$key]); unset($result[$key]);
} }
} }
return $result; return $result;
} }
public function set($key, $value, $ttl = 0) { public function set($key, $value, $ttl = 0) {
@ -39,7 +37,7 @@ class memory_driver_yac
} }
public function rm($key) { public function rm($key) {
return $this->object->delete($key); return $this->object->delete($key);
} }
public function clear() { public function clear() {
@ -47,19 +45,19 @@ class memory_driver_yac
} }
public function inc($key, $step = 1) { public function inc($key, $step = 1) {
$old = $this->get($key); $old = $this->get($key);
if(!$old){ if (!$old) {
return false; return false;
} }
return $this->set($key,$old+$step); return $this->set($key, $old + $step);
} }
public function dec($key, $step = 1) { public function dec($key, $step = 1) {
$old = $this->get($key); $old = $this->get($key);
if(!$old){ if (!$old) {
return false; return false;
} }
return $this->set($key,$old-$step); return $this->set($key, $old - $step);
} }
} }