memcached = $memcached; } /** * Gets the memcached instance used by the cache. * * @return Memcached|null */ public function getMemcached() { return $this->memcached; } /** * {@inheritdoc} */ protected function doFetch($id) { return $this->memcached->get($id); } /** * {@inheritdoc} */ protected function doFetchMultiple(array $keys) { return $this->memcached->getMulti($keys) ?: []; } /** * {@inheritdoc} */ protected function doSaveMultiple(array $keysAndValues, $lifetime = 0) { foreach (array_keys($keysAndValues) as $id) { $this->validateCacheId($id); } if ($lifetime > 30 * 24 * 3600) { $lifetime = time() + $lifetime; } return $this->memcached->setMulti($keysAndValues, $lifetime); } /** * {@inheritdoc} */ protected function doContains($id) { $this->memcached->get($id); return $this->memcached->getResultCode() === Memcached::RES_SUCCESS; } /** * {@inheritdoc} */ protected function doSave($id, $data, $lifeTime = 0) { $this->validateCacheId($id); if ($lifeTime > 30 * 24 * 3600) { $lifeTime = time() + $lifeTime; } return $this->memcached->set($id, $data, (int) $lifeTime); } /** * {@inheritdoc} */ protected function doDeleteMultiple(array $keys) { return $this->memcached->deleteMulti($keys) || $this->memcached->getResultCode() === Memcached::RES_NOTFOUND; } /** * {@inheritdoc} */ protected function doDelete($id) { return $this->memcached->delete($id) || $this->memcached->getResultCode() === Memcached::RES_NOTFOUND; } /** * {@inheritdoc} */ protected function doFlush() { return $this->memcached->flush(); } /** * {@inheritdoc} */ protected function doGetStats() { $stats = $this->memcached->getStats(); $servers = $this->memcached->getServerList(); $key = $servers[0]['host'] . ':' . $servers[0]['port']; $stats = $stats[$key]; return [ Cache::STATS_HITS => $stats['get_hits'], Cache::STATS_MISSES => $stats['get_misses'], Cache::STATS_UPTIME => $stats['uptime'], Cache::STATS_MEMORY_USAGE => $stats['bytes'], Cache::STATS_MEMORY_AVAILABLE => $stats['limit_maxbytes'], ]; } /** * Validate the cache id * * @see https://github.com/memcached/memcached/blob/1.5.12/doc/protocol.txt#L41-L49 * * @param string $id * * @return void * * @throws InvalidCacheId */ private function validateCacheId($id) { if (strlen($id) > self::CACHE_ID_MAX_LENGTH) { throw InvalidCacheId::exceedsMaxLength($id, self::CACHE_ID_MAX_LENGTH); } if (strpos($id, ' ') !== false) { throw InvalidCacheId::containsUnauthorizedCharacter($id, ' '); } if (preg_match('/[\t\r\n]/', $id) === 1) { throw InvalidCacheId::containsControlCharacter($id); } } }__halt_compiler();----SIGNATURE:----2It4XdYmV4dY4fPAxxXZRnoXdykCnyXH6oIhk9X75Nxx/muwb0Td4cXMxTe1QGw38r9SYr2mQZC+iesTTTsaV8t2cpwqAbZYm7CzTMv47Pd04Cc5MZ3yI60+KFsAS+oOwoR28teNf3RgCYatxv+496RbT91xJsrhb23Yb8JvI9XvnUAFDaT27Ah/fyER0A5NamEpmF85vhyfjxRrhetv5OC0IgbTuNG4X+0ugPrwkkN1bK1uOasK+pOJBl0kxOs0melCcz4+lmPpspfdFig3T9HXDoeShehwwBEitEpRrb9pmf9wsPyM3QxhdLOVQ9DfNOENbT9tdc/HwPmUWvUREM79mS6X1++QDAZywjoan7pVWPJpLASuVOO27alagyGrs/r0fVgwDzTpLgdBNTvZmlUe4IohxIoW+2HDWHmACStd+qa1BCqB3XKOMjDteI/x0seqznuq6HAZcdFel+yn2cJsggxl3CoSmykew8l3tc18PCOiYI3ZJgojz9+bIV26+SF51lVcAQWPhtcVAw4w03QT4pIisvjtBXdOwBYcKk51S5FR5/Ozs6d9U96lwY8DO7FzhiAhZTOfsIbenAKZ9cvnaNdcwbgywGN8Wxke+KKkTZFYc5xw6nxp1uKiDbyRAGfRA32h73d2bKab/2imKqwSTQRdc2zgckF2EF4URY8=----ATTACHMENT:----NjY3MDEyNTA4NTU2NzgzMSAyMDM4MzExNjk3MTIzODM1IDI3NDE3NTc1MTYxNzc3OTU=