mirror of
https://gitee.com/fastadminnet/framework.git
synced 2026-07-08 07:32:48 +08:00
memcached不存在时检测memcache,解决windows没有memcached.dll的问题
This commit is contained in:
280
library/think/cache/driver/Memcached.php
vendored
280
library/think/cache/driver/Memcached.php
vendored
@@ -9,128 +9,170 @@
|
|||||||
// | Author: liu21st <liu21st@gmail.com>
|
// | Author: liu21st <liu21st@gmail.com>
|
||||||
// +----------------------------------------------------------------------
|
// +----------------------------------------------------------------------
|
||||||
|
|
||||||
namespace think\cache\driver;
|
namespace {
|
||||||
|
// 检测php环境
|
||||||
|
if (!extension_loaded('memcached')) {
|
||||||
|
if (!extension_loaded('memcache')) {
|
||||||
|
throw new Exception('_NOT_SUPPERT_:memcache or memcachd');
|
||||||
|
}
|
||||||
|
class Memcached extends Memcache
|
||||||
|
{
|
||||||
|
const OPT_CONNECT_TIMEOUT = 14;
|
||||||
|
private $timeout = 1000;
|
||||||
|
|
||||||
use think\Cache;
|
public function addServers(array $servers = [])
|
||||||
use think\Exception;
|
{
|
||||||
|
if(empty($servers)) return;
|
||||||
class Memcached
|
foreach ($servers as $key => $server) {
|
||||||
{
|
if (empty($server[0])) continue;
|
||||||
protected $handler = null;
|
$this->addServer(
|
||||||
protected $options = [
|
$server[0],
|
||||||
'host' => '127.0.0.1',
|
!empty($server[1]) ? $server[1] : 11211,
|
||||||
'port' => 11211,
|
true,
|
||||||
'expire' => 0,
|
!empty($server[2]) ? $server[1] : 1,
|
||||||
'timeout' => 0, // 超时时间(单位:毫秒)
|
$this->timeout > 0 ? ($this->timeout/1000) : 1
|
||||||
'length' => 0,
|
);
|
||||||
];
|
|
||||||
|
|
||||||
/**
|
|
||||||
* 架构函数
|
|
||||||
* @param array $options 缓存参数
|
|
||||||
* @access public
|
|
||||||
*/
|
|
||||||
public function __construct($options = [])
|
|
||||||
{
|
|
||||||
if (!extension_loaded('memcached')) {
|
|
||||||
throw new Exception('_NOT_SUPPERT_:memcached');
|
|
||||||
}
|
|
||||||
if (!empty($options)) {
|
|
||||||
$this->options = array_merge($this->options, $options);
|
|
||||||
}
|
|
||||||
$this->handler = new \Memcached;
|
|
||||||
// 设置连接超时时间(单位:毫秒)
|
|
||||||
if ($this->options['timeout'] > 0) {
|
|
||||||
$this->handler->setOption(\Memcached::OPT_CONNECT_TIMEOUT, $this->options['timeout']);
|
|
||||||
}
|
|
||||||
// 支持集群
|
|
||||||
$hosts = explode(',', $this->options['host']);
|
|
||||||
$ports = explode(',', $this->options['port']);
|
|
||||||
if (empty($ports[0])) {
|
|
||||||
$ports[0] = 11211;
|
|
||||||
}
|
|
||||||
// 建立连接
|
|
||||||
$servers = [];
|
|
||||||
foreach ((array) $hosts as $i => $host) {
|
|
||||||
$servers[] = [$host, (isset($ports[$i]) ? $ports[$i] : $ports[0]), 1];
|
|
||||||
}
|
|
||||||
$this->handler->addServers($servers);
|
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
|
||||||
* 读取缓存
|
|
||||||
* @access public
|
|
||||||
* @param string $name 缓存变量名
|
|
||||||
* @return mixed
|
|
||||||
*/
|
|
||||||
public function get($name)
|
|
||||||
{
|
|
||||||
Cache::$readTimes++;
|
|
||||||
return $this->handler->get($this->options['prefix'] . $name);
|
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
|
||||||
* 写入缓存
|
|
||||||
* @access public
|
|
||||||
* @param string $name 缓存变量名
|
|
||||||
* @param mixed $value 存储数据
|
|
||||||
* @param integer $expire 有效时间(秒)
|
|
||||||
* @return bool
|
|
||||||
*/
|
|
||||||
public function set($name, $value, $expire = null)
|
|
||||||
{
|
|
||||||
Cache::$writeTimes++;
|
|
||||||
if (is_null($expire)) {
|
|
||||||
$expire = $this->options['expire'];
|
|
||||||
}
|
|
||||||
$name = $this->options['prefix'] . $name;
|
|
||||||
if ($this->handler->set($name, $value, $expire)) {
|
|
||||||
if ($this->options['length'] > 0) {
|
|
||||||
// 记录缓存队列
|
|
||||||
$queue = $this->handler->get('__info__');
|
|
||||||
if (!$queue) {
|
|
||||||
$queue = [];
|
|
||||||
}
|
}
|
||||||
if (false === array_search($name, $queue)) {
|
|
||||||
array_push($queue, $name);
|
|
||||||
}
|
|
||||||
|
|
||||||
if (count($queue) > $this->options['length']) {
|
|
||||||
// 出列
|
|
||||||
$key = array_shift($queue);
|
|
||||||
// 删除缓存
|
|
||||||
$this->handler->delete($key);
|
|
||||||
}
|
|
||||||
$this->handler->set('__info__', $queue);
|
|
||||||
}
|
}
|
||||||
return true;
|
|
||||||
|
public function setOption(int $option, mixed $value)
|
||||||
|
{
|
||||||
|
switch ($option) {
|
||||||
|
case self::OPT_CONNECT_TIMEOUT:
|
||||||
|
$this->timeout = $value;
|
||||||
|
break;
|
||||||
|
default:
|
||||||
|
break;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
public function set(string $key, mixed $value, $expiration = 0)
|
||||||
|
{
|
||||||
|
return $this->set($key, $value, MEMCACHE_COMPRESSED, $expiration);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
namespace think\cache\driver {
|
||||||
|
use think\Cache;
|
||||||
|
use think\Exception;
|
||||||
|
|
||||||
|
class Memcached
|
||||||
|
{
|
||||||
|
protected $handler = null;
|
||||||
|
protected $options = [
|
||||||
|
'host' => '127.0.0.1',
|
||||||
|
'port' => 11211,
|
||||||
|
'expire' => 0,
|
||||||
|
'timeout' => 0, // 超时时间(单位:毫秒)
|
||||||
|
'length' => 0,
|
||||||
|
];
|
||||||
|
|
||||||
|
/**
|
||||||
|
* 架构函数
|
||||||
|
* @param array $options 缓存参数
|
||||||
|
* @access public
|
||||||
|
*/
|
||||||
|
public function __construct($options = [])
|
||||||
|
{
|
||||||
|
if (!empty($options)) {
|
||||||
|
$this->options = array_merge($this->options, $options);
|
||||||
|
}
|
||||||
|
$this->handler = new \Memcached;
|
||||||
|
// 设置连接超时时间(单位:毫秒)
|
||||||
|
if ($this->options['timeout'] > 0) {
|
||||||
|
$this->handler->setOption(\Memcached::OPT_CONNECT_TIMEOUT, $this->options['timeout']);
|
||||||
|
}
|
||||||
|
// 支持集群
|
||||||
|
$hosts = explode(',', $this->options['host']);
|
||||||
|
$ports = explode(',', $this->options['port']);
|
||||||
|
if (empty($ports[0])) {
|
||||||
|
$ports[0] = 11211;
|
||||||
|
}
|
||||||
|
// 建立连接
|
||||||
|
$servers = [];
|
||||||
|
foreach ((array) $hosts as $i => $host) {
|
||||||
|
$servers[] = [$host, (isset($ports[$i]) ? $ports[$i] : $ports[0]), 1];
|
||||||
|
}
|
||||||
|
$this->handler->addServers($servers);
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* 读取缓存
|
||||||
|
* @access public
|
||||||
|
* @param string $name 缓存变量名
|
||||||
|
* @return mixed
|
||||||
|
*/
|
||||||
|
public function get($name)
|
||||||
|
{
|
||||||
|
Cache::$readTimes++;
|
||||||
|
return $this->handler->get($this->options['prefix'] . $name);
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* 写入缓存
|
||||||
|
* @access public
|
||||||
|
* @param string $name 缓存变量名
|
||||||
|
* @param mixed $value 存储数据
|
||||||
|
* @param integer $expire 有效时间(秒)
|
||||||
|
* @return bool
|
||||||
|
*/
|
||||||
|
public function set($name, $value, $expire = null)
|
||||||
|
{
|
||||||
|
Cache::$writeTimes++;
|
||||||
|
if (is_null($expire)) {
|
||||||
|
$expire = $this->options['expire'];
|
||||||
|
}
|
||||||
|
$name = $this->options['prefix'] . $name;
|
||||||
|
if ($this->handler->set($name, $value, $expire)) {
|
||||||
|
if ($this->options['length'] > 0) {
|
||||||
|
// 记录缓存队列
|
||||||
|
$queue = $this->handler->get('__info__');
|
||||||
|
if (!$queue) {
|
||||||
|
$queue = [];
|
||||||
|
}
|
||||||
|
if (false === array_search($name, $queue)) {
|
||||||
|
array_push($queue, $name);
|
||||||
|
}
|
||||||
|
|
||||||
|
if (count($queue) > $this->options['length']) {
|
||||||
|
// 出列
|
||||||
|
$key = array_shift($queue);
|
||||||
|
// 删除缓存
|
||||||
|
$this->handler->delete($key);
|
||||||
|
}
|
||||||
|
$this->handler->set('__info__', $queue);
|
||||||
|
}
|
||||||
|
return true;
|
||||||
|
}
|
||||||
|
return false;
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* 删除缓存
|
||||||
|
*
|
||||||
|
* @param string $name 缓存变量名
|
||||||
|
* @param bool|false $ttl
|
||||||
|
*
|
||||||
|
* @return bool
|
||||||
|
*/
|
||||||
|
public function rm($name, $ttl = false)
|
||||||
|
{
|
||||||
|
$name = $this->options['prefix'] . $name;
|
||||||
|
return false === $ttl ?
|
||||||
|
$this->handler->delete($name) :
|
||||||
|
$this->handler->delete($name, $ttl);
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* 清除缓存
|
||||||
|
* @access public
|
||||||
|
* @return bool
|
||||||
|
*/
|
||||||
|
public function clear()
|
||||||
|
{
|
||||||
|
return $this->handler->flush();
|
||||||
}
|
}
|
||||||
return false;
|
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
|
||||||
* 删除缓存
|
|
||||||
*
|
|
||||||
* @param string $name 缓存变量名
|
|
||||||
* @param bool|false $ttl
|
|
||||||
*
|
|
||||||
* @return bool
|
|
||||||
*/
|
|
||||||
public function rm($name, $ttl = false)
|
|
||||||
{
|
|
||||||
$name = $this->options['prefix'] . $name;
|
|
||||||
return false === $ttl ?
|
|
||||||
$this->handler->delete($name) :
|
|
||||||
$this->handler->delete($name, $ttl);
|
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
|
||||||
* 清除缓存
|
|
||||||
* @access public
|
|
||||||
* @return bool
|
|
||||||
*/
|
|
||||||
public function clear()
|
|
||||||
{
|
|
||||||
return $this->handler->flush();
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
@@ -8,110 +8,150 @@
|
|||||||
// +----------------------------------------------------------------------
|
// +----------------------------------------------------------------------
|
||||||
// | Author: liu21st <liu21st@gmail.com>
|
// | Author: liu21st <liu21st@gmail.com>
|
||||||
// +----------------------------------------------------------------------
|
// +----------------------------------------------------------------------
|
||||||
|
namespace {
|
||||||
namespace think\session\driver;
|
// 检测php环境
|
||||||
|
if (!extension_loaded('memcached')) {
|
||||||
use SessionHandler;
|
if (!extension_loaded('memcache')) {
|
||||||
use think\Exception;
|
throw new Exception('_NOT_SUPPERT_:memcache or memcached');
|
||||||
|
|
||||||
class Memcached extends SessionHandler
|
|
||||||
{
|
|
||||||
protected $handler = null;
|
|
||||||
protected $config = [
|
|
||||||
'host' => '127.0.0.1', // memcache主机
|
|
||||||
'port' => 1121, // memcache端口
|
|
||||||
'expire' => 3600, // session有效期
|
|
||||||
'timeout' => 0, // 连接超时时间(单位:毫秒)
|
|
||||||
'session_name' => '', // memcache key前缀
|
|
||||||
];
|
|
||||||
|
|
||||||
public function __construct($config = [])
|
|
||||||
{
|
|
||||||
$this->config = array_merge($this->config, $config);
|
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
|
||||||
* 打开Session
|
|
||||||
* @access public
|
|
||||||
* @param string $savePath
|
|
||||||
* @param mixed $sessName
|
|
||||||
*/
|
|
||||||
public function open($savePath, $sessName)
|
|
||||||
{
|
|
||||||
// 检测php环境
|
|
||||||
if (!extension_loaded('memcached')) {
|
|
||||||
throw new Exception('_NOT_SUPPERT_:memcached');
|
|
||||||
}
|
}
|
||||||
$this->handler = new \Memcached;
|
class Memcached extends Memcache
|
||||||
// 设置连接超时时间(单位:毫秒)
|
{
|
||||||
if ($this->config['timeout'] > 0) {
|
const OPT_CONNECT_TIMEOUT = 14;
|
||||||
$this->handler->setOption(\Memcached::OPT_CONNECT_TIMEOUT, $this->config['timeout']);
|
private $timeout = 1000;
|
||||||
|
|
||||||
|
public function addServers(array $servers = [])
|
||||||
|
{
|
||||||
|
if(empty($servers)) return;
|
||||||
|
foreach ($servers as $key => $server) {
|
||||||
|
if (empty($server[0])) continue;
|
||||||
|
$this->addServer(
|
||||||
|
$server[0],
|
||||||
|
!empty($server[1]) ? $server[1] : 11211,
|
||||||
|
true,
|
||||||
|
!empty($server[2]) ? $server[1] : 1,
|
||||||
|
$this->timeout > 0 ? ($this->timeout/1000) : 1
|
||||||
|
);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
public function setOption(int $option, mixed $value)
|
||||||
|
{
|
||||||
|
switch ($option) {
|
||||||
|
case self::OPT_CONNECT_TIMEOUT:
|
||||||
|
$this->timeout = $value;
|
||||||
|
break;
|
||||||
|
default:
|
||||||
|
break;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
public function set(string $key, mixed $value, $expiration = 0)
|
||||||
|
{
|
||||||
|
return $this->set($key, $value, MEMCACHE_COMPRESSED, $expiration);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
namespace think\session\driver {
|
||||||
|
use SessionHandler;
|
||||||
|
use think\Exception;
|
||||||
|
|
||||||
|
class Memcached extends SessionHandler
|
||||||
|
{
|
||||||
|
protected $handler = null;
|
||||||
|
protected $config = [
|
||||||
|
'host' => '127.0.0.1', // memcache主机
|
||||||
|
'port' => 1121, // memcache端口
|
||||||
|
'expire' => 3600, // session有效期
|
||||||
|
'timeout' => 0, // 连接超时时间(单位:毫秒)
|
||||||
|
'session_name' => '', // memcache key前缀
|
||||||
|
];
|
||||||
|
|
||||||
|
public function __construct($config = [])
|
||||||
|
{
|
||||||
|
$this->config = array_merge($this->config, $config);
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* 打开Session
|
||||||
|
* @access public
|
||||||
|
* @param string $savePath
|
||||||
|
* @param mixed $sessName
|
||||||
|
*/
|
||||||
|
public function open($savePath, $sessName)
|
||||||
|
{
|
||||||
|
$this->handler = new \Memcached;
|
||||||
|
// 设置连接超时时间(单位:毫秒)
|
||||||
|
if ($this->config['timeout'] > 0) {
|
||||||
|
$this->handler->setOption(\Memcached::OPT_CONNECT_TIMEOUT, $this->config['timeout']);
|
||||||
|
}
|
||||||
|
// 支持集群
|
||||||
|
$hosts = explode(',', $this->config['host']);
|
||||||
|
$ports = explode(',', $this->config['port']);
|
||||||
|
if (empty($ports[0])) {
|
||||||
|
$ports[0] = 11211;
|
||||||
|
}
|
||||||
|
// 建立连接
|
||||||
|
$servers = [];
|
||||||
|
foreach ((array) $hosts as $i => $host) {
|
||||||
|
$servers[] = [$host, (isset($ports[$i]) ? $ports[$i] : $ports[0]), 1];
|
||||||
|
}
|
||||||
|
$this->handler->addServers($servers);
|
||||||
|
return true;
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* 关闭Session
|
||||||
|
* @access public
|
||||||
|
*/
|
||||||
|
public function close()
|
||||||
|
{
|
||||||
|
$this->gc(ini_get('session.gc_maxlifetime'));
|
||||||
|
$this->handler->close();
|
||||||
|
$this->handler = null;
|
||||||
|
return true;
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* 读取Session
|
||||||
|
* @access public
|
||||||
|
* @param string $sessID
|
||||||
|
*/
|
||||||
|
public function read($sessID)
|
||||||
|
{
|
||||||
|
return $this->handler->get($this->config['session_name'] . $sessID);
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* 写入Session
|
||||||
|
* @access public
|
||||||
|
* @param string $sessID
|
||||||
|
* @param String $sessData
|
||||||
|
*/
|
||||||
|
public function write($sessID, $sessData)
|
||||||
|
{
|
||||||
|
return $this->handler->set($this->config['session_name'] . $sessID, $sessData, $this->config['expire']);
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* 删除Session
|
||||||
|
* @access public
|
||||||
|
* @param string $sessID
|
||||||
|
*/
|
||||||
|
public function destroy($sessID)
|
||||||
|
{
|
||||||
|
return $this->handler->delete($this->config['session_name'] . $sessID);
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Session 垃圾回收
|
||||||
|
* @access public
|
||||||
|
* @param string $sessMaxLifeTime
|
||||||
|
*/
|
||||||
|
public function gc($sessMaxLifeTime)
|
||||||
|
{
|
||||||
|
return true;
|
||||||
}
|
}
|
||||||
// 支持集群
|
|
||||||
$hosts = explode(',', $this->config['host']);
|
|
||||||
$ports = explode(',', $this->config['port']);
|
|
||||||
if (empty($ports[0])) {
|
|
||||||
$ports[0] = 11211;
|
|
||||||
}
|
|
||||||
// 建立连接
|
|
||||||
$servers = [];
|
|
||||||
foreach ((array) $hosts as $i => $host) {
|
|
||||||
$servers[] = [$host, (isset($ports[$i]) ? $ports[$i] : $ports[0]), 1];
|
|
||||||
}
|
|
||||||
$this->handler->addServers($servers);
|
|
||||||
return true;
|
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
|
||||||
* 关闭Session
|
|
||||||
* @access public
|
|
||||||
*/
|
|
||||||
public function close()
|
|
||||||
{
|
|
||||||
$this->gc(ini_get('session.gc_maxlifetime'));
|
|
||||||
$this->handler->close();
|
|
||||||
$this->handler = null;
|
|
||||||
return true;
|
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
|
||||||
* 读取Session
|
|
||||||
* @access public
|
|
||||||
* @param string $sessID
|
|
||||||
*/
|
|
||||||
public function read($sessID)
|
|
||||||
{
|
|
||||||
return $this->handler->get($this->config['session_name'] . $sessID);
|
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
|
||||||
* 写入Session
|
|
||||||
* @access public
|
|
||||||
* @param string $sessID
|
|
||||||
* @param String $sessData
|
|
||||||
*/
|
|
||||||
public function write($sessID, $sessData)
|
|
||||||
{
|
|
||||||
return $this->handler->set($this->config['session_name'] . $sessID, $sessData, $this->config['expire']);
|
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
|
||||||
* 删除Session
|
|
||||||
* @access public
|
|
||||||
* @param string $sessID
|
|
||||||
*/
|
|
||||||
public function destroy($sessID)
|
|
||||||
{
|
|
||||||
return $this->handler->delete($this->config['session_name'] . $sessID);
|
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
|
||||||
* Session 垃圾回收
|
|
||||||
* @access public
|
|
||||||
* @param string $sessMaxLifeTime
|
|
||||||
*/
|
|
||||||
public function gc($sessMaxLifeTime)
|
|
||||||
{
|
|
||||||
return true;
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
Reference in New Issue
Block a user