| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365 | <?php/** * @link http://www.yiiframework.com/ * @copyright Copyright (c) 2008 Yii Software LLC * @license http://www.yiiframework.com/license/ */namespace yii\caching;use Yii;use yii\base\InvalidConfigException;/** * MemCache implements a cache application component based on [memcache](https://pecl.php.net/package/memcache) * and [memcached](https://pecl.php.net/package/memcached). * * MemCache supports both [memcache](https://pecl.php.net/package/memcache) and * [memcached](https://pecl.php.net/package/memcached). By setting [[useMemcached]] to be true or false, * one can let MemCache to use either memcached or memcache, respectively. * * MemCache can be configured with a list of memcache servers by settings its [[servers]] property. * By default, MemCache assumes there is a memcache server running on localhost at port 11211. * * See [[Cache]] for common cache operations that MemCache supports. * * Note, there is no security measure to protected data in memcache. * All data in memcache can be accessed by any process running in the system. * * To use MemCache as the cache application component, configure the application as follows, * * ```php * [ *     'components' => [ *         'cache' => [ *             'class' => 'yii\caching\MemCache', *             'servers' => [ *                 [ *                     'host' => 'server1', *                     'port' => 11211, *                     'weight' => 60, *                 ], *                 [ *                     'host' => 'server2', *                     'port' => 11211, *                     'weight' => 40, *                 ], *             ], *         ], *     ], * ] * ``` * * In the above, two memcache servers are used: server1 and server2. You can configure more properties of * each server, such as `persistent`, `weight`, `timeout`. Please see [[MemCacheServer]] for available options. * * For more details and usage information on Cache, see the [guide article on caching](guide:caching-overview). * * @property \Memcache|\Memcached $memcache The memcache (or memcached) object used by this cache component. * This property is read-only. * @property MemCacheServer[] $servers List of memcache server configurations. Note that the type of this * property differs in getter and setter. See [[getServers()]] and [[setServers()]] for details. * * @author Qiang Xue <qiang.xue@gmail.com> * @since 2.0 */class MemCache extends Cache{    /**     * @var bool whether to use memcached or memcache as the underlying caching extension.     * If true, [memcached](https://pecl.php.net/package/memcached) will be used.     * If false, [memcache](https://pecl.php.net/package/memcache) will be used.     * Defaults to false.     */    public $useMemcached = false;    /**     * @var string an ID that identifies a Memcached instance. This property is used only when [[useMemcached]] is true.     * By default the Memcached instances are destroyed at the end of the request. To create an instance that     * persists between requests, you may specify a unique ID for the instance. All instances created with the     * same ID will share the same connection.     * @see https://secure.php.net/manual/en/memcached.construct.php     */    public $persistentId;    /**     * @var array options for Memcached. This property is used only when [[useMemcached]] is true.     * @see https://secure.php.net/manual/en/memcached.setoptions.php     */    public $options;    /**     * @var string memcached sasl username. This property is used only when [[useMemcached]] is true.     * @see https://secure.php.net/manual/en/memcached.setsaslauthdata.php     */    public $username;    /**     * @var string memcached sasl password. This property is used only when [[useMemcached]] is true.     * @see https://secure.php.net/manual/en/memcached.setsaslauthdata.php     */    public $password;    /**     * @var \Memcache|\Memcached the Memcache instance     */    private $_cache;    /**     * @var array list of memcache server configurations     */    private $_servers = [];    /**     * Initializes this application component.     * It creates the memcache instance and adds memcache servers.     */    public function init()    {        parent::init();        $this->addServers($this->getMemcache(), $this->getServers());    }    /**     * Add servers to the server pool of the cache specified.     *     * @param \Memcache|\Memcached $cache     * @param MemCacheServer[] $servers     * @throws InvalidConfigException     */    protected function addServers($cache, $servers)    {        if (empty($servers)) {            $servers = [new MemCacheServer([                'host' => '127.0.0.1',                'port' => 11211,            ])];        } else {            foreach ($servers as $server) {                if ($server->host === null) {                    throw new InvalidConfigException("The 'host' property must be specified for every memcache server.");                }            }        }        if ($this->useMemcached) {            $this->addMemcachedServers($cache, $servers);        } else {            $this->addMemcacheServers($cache, $servers);        }    }    /**     * Add servers to the server pool of the cache specified     * Used for memcached PECL extension.     *     * @param \Memcached $cache     * @param MemCacheServer[] $servers     */    protected function addMemcachedServers($cache, $servers)    {        $existingServers = [];        if ($this->persistentId !== null) {            foreach ($cache->getServerList() as $s) {                $existingServers[$s['host'] . ':' . $s['port']] = true;            }        }        foreach ($servers as $server) {            if (empty($existingServers) || !isset($existingServers[$server->host . ':' . $server->port])) {                $cache->addServer($server->host, $server->port, $server->weight);            }        }    }    /**     * Add servers to the server pool of the cache specified     * Used for memcache PECL extension.     *     * @param \Memcache $cache     * @param MemCacheServer[] $servers     */    protected function addMemcacheServers($cache, $servers)    {        $class = new \ReflectionClass($cache);        $paramCount = $class->getMethod('addServer')->getNumberOfParameters();        foreach ($servers as $server) {            // $timeout is used for memcache versions that do not have $timeoutms parameter            $timeout = (int) ($server->timeout / 1000) + (($server->timeout % 1000 > 0) ? 1 : 0);            if ($paramCount === 9) {                $cache->addserver(                    $server->host,                    $server->port,                    $server->persistent,                    $server->weight,                    $timeout,                    $server->retryInterval,                    $server->status,                    $server->failureCallback,                    $server->timeout                );            } else {                $cache->addserver(                    $server->host,                    $server->port,                    $server->persistent,                    $server->weight,                    $timeout,                    $server->retryInterval,                    $server->status,                    $server->failureCallback                );            }        }    }    /**     * Returns the underlying memcache (or memcached) object.     * @return \Memcache|\Memcached the memcache (or memcached) object used by this cache component.     * @throws InvalidConfigException if memcache or memcached extension is not loaded     */    public function getMemcache()    {        if ($this->_cache === null) {            $extension = $this->useMemcached ? 'memcached' : 'memcache';            if (!extension_loaded($extension)) {                throw new InvalidConfigException("MemCache requires PHP $extension extension to be loaded.");            }            if ($this->useMemcached) {                $this->_cache = $this->persistentId !== null ? new \Memcached($this->persistentId) : new \Memcached();                if ($this->username !== null || $this->password !== null) {                    $this->_cache->setOption(\Memcached::OPT_BINARY_PROTOCOL, true);                    $this->_cache->setSaslAuthData($this->username, $this->password);                }                if (!empty($this->options)) {                    $this->_cache->setOptions($this->options);                }            } else {                $this->_cache = new \Memcache();            }        }        return $this->_cache;    }    /**     * Returns the memcache or memcached server configurations.     * @return MemCacheServer[] list of memcache server configurations.     */    public function getServers()    {        return $this->_servers;    }    /**     * @param array $config list of memcache or memcached server configurations. Each element must be an array     * with the following keys: host, port, persistent, weight, timeout, retryInterval, status.     * @see https://secure.php.net/manual/en/memcache.addserver.php     * @see https://secure.php.net/manual/en/memcached.addserver.php     */    public function setServers($config)    {        foreach ($config as $c) {            $this->_servers[] = new MemCacheServer($c);        }    }    /**     * Retrieves a value from cache with a specified key.     * This is the implementation of the method declared in the parent class.     * @param string $key a unique key identifying the cached value     * @return mixed|false the value stored in cache, false if the value is not in the cache or expired.     */    protected function getValue($key)    {        return $this->_cache->get($key);    }    /**     * Retrieves multiple values from cache with the specified keys.     * @param array $keys a list of keys identifying the cached values     * @return array a list of cached values indexed by the keys     */    protected function getValues($keys)    {        return $this->useMemcached ? $this->_cache->getMulti($keys) : $this->_cache->get($keys);    }    /**     * Stores a value identified by a key in cache.     * This is the implementation of the method declared in the parent class.     *     * @param string $key the key identifying the value to be cached     * @param mixed $value the value to be cached.     * @see [Memcache::set()](https://secure.php.net/manual/en/memcache.set.php)     * @param int $duration the number of seconds in which the cached value will expire. 0 means never expire.     * @return bool true if the value is successfully stored into cache, false otherwise     */    protected function setValue($key, $value, $duration)    {        // Use UNIX timestamp since it doesn't have any limitation        // @see https://secure.php.net/manual/en/memcache.set.php        // @see https://secure.php.net/manual/en/memcached.expiration.php        $expire = $duration > 0 ? $duration + time() : 0;        return $this->useMemcached ? $this->_cache->set($key, $value, $expire) : $this->_cache->set($key, $value, 0, $expire);    }    /**     * Stores multiple key-value pairs in cache.     * @param array $data array where key corresponds to cache key while value is the value stored     * @param int $duration the number of seconds in which the cached values will expire. 0 means never expire.     * @return array array of failed keys.     */    protected function setValues($data, $duration)    {        if ($this->useMemcached) {            // Use UNIX timestamp since it doesn't have any limitation            // @see https://secure.php.net/manual/en/memcache.set.php            // @see https://secure.php.net/manual/en/memcached.expiration.php            $expire = $duration > 0 ? $duration + time() : 0;            // Memcached::setMulti() returns boolean            // @see https://secure.php.net/manual/en/memcached.setmulti.php            return $this->_cache->setMulti($data, $expire) ? [] : array_keys($data);        }        return parent::setValues($data, $duration);    }    /**     * Stores a value identified by a key into cache if the cache does not contain this key.     * This is the implementation of the method declared in the parent class.     *     * @param string $key the key identifying the value to be cached     * @param mixed $value the value to be cached     * @see [Memcache::set()](https://secure.php.net/manual/en/memcache.set.php)     * @param int $duration the number of seconds in which the cached value will expire. 0 means never expire.     * @return bool true if the value is successfully stored into cache, false otherwise     */    protected function addValue($key, $value, $duration)    {        // Use UNIX timestamp since it doesn't have any limitation        // @see https://secure.php.net/manual/en/memcache.set.php        // @see https://secure.php.net/manual/en/memcached.expiration.php        $expire = $duration > 0 ? $duration + time() : 0;        return $this->useMemcached ? $this->_cache->add($key, $value, $expire) : $this->_cache->add($key, $value, 0, $expire);    }    /**     * Deletes a value with the specified key from cache     * This is the implementation of the method declared in the parent class.     * @param string $key the key of the value to be deleted     * @return bool if no error happens during deletion     */    protected function deleteValue($key)    {        return $this->_cache->delete($key, 0);    }    /**     * Deletes all values from cache.     * This is the implementation of the method declared in the parent class.     * @return bool whether the flush operation was successful.     */    protected function flushValues()    {        return $this->_cache->flush();    }}
 |