Blame view

Hood/Cache/Memcached.php 8.26 KB
ziy authored
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
<?php
/**
 * Created by PhpStorm.
 * User: Zip
 * Date: 14/11/23
 * Time: 上午1:39
 */

namespace Hood\Cache;

use Hood\Core\Root;
use Hood\Debug\DebugException;

class Memcached extends Root implements CacheInterface
{
    private $mcInstances = array();

    private $persistentIDs = array();

    private $timeout = 150;

    private $section = 'memcached';

    private $node = 'servers';

    private $tagName = '';

    private $prefix = '';

    private $persistentID = 'hood.cache';

    private $childNodes = 'hosts';

    public function __construct($prefix = '', $persistentID = 'hood.cache')
    {
        parent::__construct();
        $this->prefix = $prefix;
        $this->persistentIDs[] = $this->persistentID = $persistentID;
    }

    /**
     * 设置子节点
     * @param $childNode
     * @return $this
     */
    public function setChildNodes($childNode)
    {
        $this->childNodes = $childNode;
        return $this;
    }

    /**
     * 设置前缀
     * @param $prefix
     * @return $this
     */
    public function setPrefix($prefix)
    {
        $this->prefix = $prefix;
        return $this;
    }

    /**
     * 设置共享连接ID
     * @param $persistentID
     * @return $this
     */
    public function setPersistentID($persistentID)
    {
        $this->persistentID = $persistentID;
        return $this;
    }

    /**
     * @param $persistentID
     * @return \Memcached
     * @throws \Hood\Debug\DebugException
     */
    private function init()
    {
        if (isset($this->mcInstances[$this->persistentID])) {
            $mc = $this->mcInstances[$this->persistentID];
        } else {
ziy authored
84
            $instance = new \Memcached();
ziy authored
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
            $instance->setOption(\Memcached::OPT_PREFIX_KEY, $this->prefix);
            $instance->setOption(\Memcached::OPT_LIBKETAMA_COMPATIBLE, true);//设置为md5并且分布算法将会 采用带有权重的一致性hash分布
            if (count($instance->getServerList()) < 1) {
                $server = $this->getServerHost('cache');
                $_serverHosts = $server->getServerConfig($this->section, $this->node);
                if (empty($_serverHosts[$this->childNodes])) {
                    throw new DebugException('Memcache Host Config is Null.');
                }
                $mcServers = $this->_makeHosts($server->getServer($_serverHosts[$this->childNodes], 2));
                $instance->addServers($mcServers);
                unset($mcServers);
            }
            $this->mcInstances[$this->persistentID] = $mc = $instance;
        }
        return $mc;
    }


    /**
     * 设置mc配置的块
     * @param $section
     * @return $this
     */
    public function setSection($section)
    {
        $this->section = $section;
        return $this;
    }

    /**
     * 设置mc配置的块节点
     * @param $node
     * @return $this
     */
    public function setNode($node = null)
    {
        if ($node != null) $this->node = $node;
        return $this;
    }

    /**
     * 组织host
     * @param array $hosts
     * @return array
     */
    private function _makeHosts(array $hosts)
    {
        $_server = array();
        foreach ($hosts as $key => $val) {
            $_server[] = explode(':', $val);
        }
        return $_server;
    }

    /**
     * 构建tag
     * @param bool $mode
     * @return string
     */
    private function _makeTag($mode = false)
    {
        if (empty($this->tagName)) return '';
        $_tagVal = $this->init()->get($this->tagName);
        if (empty($_tagVal) && $mode == true) {
            $_tagVal = md5(microtime() . mt_rand() . uniqid());
            $this->init()->set($this->tagName, $_tagVal, 0);
        }
        unset($this->tagName);
        return empty($_tagVal) ? '' : $_tagVal . '.';
    }

    /**
     * 检索一个元素
     * @param $key
     * @param callable $cache_cb
     * @param float $cas_token
     * @return mixed
     */
    public function get($key, $cacheCb = null, &$casToken = null)
    {
        return $this->init()->get($this->_makeTag() . $key, $cacheCb, $casToken);
    }

    /**
     *  向一个新的key下面增加一个元素
     * @param $key
     * @param $value
     * @param $expiration
     * @return bool
     */
    public function add($key, $value, $expiration = 0)
    {
        return $this->init()->add($this->_makeTag(true) . $key, $value, $expiration);
    }

    /**
     * 向已存在元素后追加数据
     * @param $key
     * @param $value
     * @return bool
     */
    public function append($key, $value)
    {
        return $this->init()->append($this->_makeTag(true) . $key, $value);
    }

    /**
     * 比较并交换值
     * @param $casToken
     * @param $key
     * @param $value
     * @param int $expiration
     * @return bool
     */
    public function cas($casToken, $key, $value, $expiration = 0)
    {
        return $this->init()->cas($casToken, $this->_makeTag(true) . $key, $value, $expiration);
    }

    /**
     * 减小数值元素的值
     * @param $key
     * @param int $offset
     * @return int
     */
    public function decrement($key, $offset = 1)
    {
        return $this->init()->decrement($this->_makeTag() . $key, $offset);
    }

    /**
     * @param $key
     * @param int $time
     * @return bool
     */
    public function delete($key, $time = 0)
    {
        return $this->init()->delete($this->_makeTag() . $key, $time);
    }

    /**
     * 删除多个数据
     * @param array $keys
     * @param int $time
     * @return bool
     */
    public function deleteMulti(array $keys, $time = 0)
    {
        return $this->init()->deleteMulti($this->_makeMultiKey($keys), $time);
    }

    /**
     * 组合多key 数据
     * @param $keys
     * @return array
     */
    private function _makeMultiKey($keys, $mode = false)
    {
        $_keys = array();
        $tag = $this->_makeTag($mode);
        foreach ($keys as $key) {
            $_keys[] = $tag . $key;
        }
        return $_keys;
    }

    /**
     * 请求多个元素
     * @param array $keys
     * @param null $withCas
     * @param callable $valueCb
     * @return bool
     */
    public function getDelayed(array $keys, $withCas = null, callable $valueCb = null)
    {
        return $this->init()->getDelayed($this->_makeMultiKey($keys), $withCas, $valueCb);
    }

    /**
     * 抓取所有剩余的结果
     * @return array
     */
    public function fetchAll()
    {
        return $this->init()->fetchAll();
    }

    /**
     * 检索多个元素
     * @param array $keys
     * @param array $cas_tokens
     * @param null $flags
     * @return mixed
     */
    public function getMulti(array $keys, array &$casTokens = null, $flags = null)
    {
        return $this->init()->getMulti($this->_makeMultiKey($keys), $casTokens, $flags);
    }

    /**
     * 增加数值元素的值
     * @param $key
     * @param int $offset
     * @param int $initialValue
     * @param int $expiry
     * @return int
     */
    public function increment($key, $offset = 1, $initialValue = 0, $expiry = 0)
    {
        return $this->init()->increment($this->_makeTag() . $key, $offset, $initialValue, $expiry);
    }

    /**
     * 检查memcache是否长连接
     * @return bool
     */
    public function isPersistent()
    {
        return $this->init()->isPersistent();
    }

    /**
     * 设置
     * @param $key
     * @param $value
     * @param int $expiration
     * @return bool
     */
    public function set($key, $value, $expiration = 0)
    {
        return $this->init()->set($this->_makeTag(true) . $key, $value, $expiration);
    }

    /**
     * 设置多个数据
     * @param array $items
     * @param int $expiration
     * @return bool
     */
    public function setMulti(array $items, $expiration = 0)
    {
        $_items = array();
        $tag = $this->_makeTag(true);
        foreach ($items as $key => $val) {
            $_items[$tag . $key] = $val;
        }
        return $this->init()->setMulti($_items, $expiration);
    }

    /**
     * 设置tag
     * @param $tagName
     * @return $this
     */
    public function tag($tagName)
    {
        $this->tagName = $tagName;
        return $this;
    }

    /**
     * 清除服务列表
     * @return $this
     */
    public function resetServerList()
    {
        $this->init()->resetServerList();
        return $this;
    }
}