banker/src/Driver/MemcachedDriver.php

230 lines
4.5 KiB
PHP
Raw Normal View History

2016-10-19 09:57:06 -04:00
<?php declare(strict_types=1);
2016-09-05 16:43:37 -04:00
/**
* Banker
*
* A Caching library implementing psr/cache (PSR 6) and psr/simple-cache (PSR 16)
2016-09-05 16:43:37 -04:00
*
2021-11-30 11:56:15 -05:00
* PHP version 8+
2016-09-05 16:43:37 -04:00
*
* @package Banker
* @author Timothy J. Warren <tim@timshomepage.net>
2023-03-16 13:09:36 -04:00
* @copyright 2016 - 2023 Timothy J. Warren
2016-09-05 16:43:37 -04:00
* @license http://www.opensource.org/licenses/mit-license.html MIT License
2023-03-16 13:09:36 -04:00
* @version 4.1.0
2016-09-05 16:43:37 -04:00
* @link https://git.timshomepage.net/timw4mail/banker
*/
namespace Aviat\Banker\Driver;
use Aviat\Banker\Exception\CacheException;
use Aviat\Banker\Exception\InvalidArgumentException;
use DateInterval;
2020-05-07 17:17:03 -04:00
use Memcached;
use MemcachedException;
2016-09-05 16:43:37 -04:00
/**
* Memcached cache backend
*/
2016-09-06 17:03:43 -04:00
class MemcachedDriver extends AbstractDriver {
2016-09-05 16:43:37 -04:00
2019-12-10 11:00:46 -05:00
/**
2023-02-03 14:01:25 -05:00
* The Memcached connection
2019-12-10 11:00:46 -05:00
*/
private Memcached $conn;
2019-12-10 11:00:46 -05:00
2016-09-05 16:43:37 -04:00
/**
* Driver for PHP Memcache extension
*
* @codeCoverageIgnore
2016-09-05 16:43:37 -04:00
* @param array $config
2016-09-06 20:57:24 -04:00
* @param array $options
2016-09-05 16:43:37 -04:00
* @throws CacheException
*/
2017-03-01 12:04:01 -05:00
public function __construct(
array $config = ['host' => '127.0.0.1', 'port' => '11211'],
2017-03-01 12:04:01 -05:00
array $options = []
)
2016-09-05 16:43:37 -04:00
{
if ( ! class_exists('Memcached'))
{
throw new CacheException('Memcached driver requires memcached extension');
2016-09-05 16:43:37 -04:00
}
2016-09-06 17:03:43 -04:00
try
{
2020-05-07 17:17:03 -04:00
$this->conn = new Memcached();
$this->conn->setOption(Memcached::OPT_BINARY_PROTOCOL, true);
2016-10-19 09:57:06 -04:00
$this->conn->addServer($config['host'], (int) $config['port']);
2016-09-06 20:57:24 -04:00
if ( ! empty($options))
{
$this->conn->setOptions($options);
}
2016-09-06 17:03:43 -04:00
}
2020-05-07 17:17:03 -04:00
catch (MemcachedException $e)
2016-09-06 17:03:43 -04:00
{
2016-09-06 20:26:28 -04:00
// Rewrite MemcachedException as a CacheException to
2016-09-06 17:03:43 -04:00
// match the requirements of the interface
2016-09-06 20:26:28 -04:00
throw new CacheException($e->getMessage(), $e->getCode(), $e);
2016-09-06 17:03:43 -04:00
}
2016-09-05 16:43:37 -04:00
}
/**
* Disconnect from memcached server
2020-05-07 17:17:03 -04:00
* @codeCoverageIgnore
2016-09-05 16:43:37 -04:00
*/
public function __destruct()
{
$this->conn->quit();
}
/**
* See if a key currently exists in the cache
*
* @param string $key
* @return bool
*/
2016-10-19 09:57:06 -04:00
public function exists(string $key): bool
2016-09-05 16:43:37 -04:00
{
2020-05-07 17:17:03 -04:00
$this->conn->get($key);
$resultFlag = $this->conn->getResultCode();
return ($resultFlag !== Memcached::RES_NOTFOUND);
2016-09-05 16:43:37 -04:00
}
/**
* Get the value for the selected cache key
*
* @param string $key
* @return mixed
*/
public function get(string $key): mixed
2016-09-05 16:43:37 -04:00
{
return $this->conn->get($key);
}
/**
* Retrieve a set of values by their cache key
*
* @param string[] $keys
* @return array
*/
2016-10-19 09:57:06 -04:00
public function getMultiple(array $keys = []): array
2016-09-05 16:43:37 -04:00
{
$this->validateKeys($keys);
2020-05-07 17:17:03 -04:00
$response = $this->conn->getMulti($keys);
return (is_array($response)) ? $response : [];
2016-09-05 16:43:37 -04:00
}
/**
* Set a cached value
*
* @param string $key
* @param mixed $value
* @param int|DateInterval|null $expires
2020-05-07 17:17:03 -04:00
* @return bool
* @throws InvalidArgumentException
2016-09-05 16:43:37 -04:00
*/
public function set(string $key, mixed $value, int|DateInterval|null $expires = NULL): bool
2016-09-05 16:43:37 -04:00
{
$this->validateKey($key);
2021-02-19 12:18:38 -05:00
if ($expires instanceof DateInterval)
{
$expires = time() + $expires->s;
}
return ($expires === NULL)
? $this->conn->set($key, $value)
: $this->conn->set($key, $value, $expires);
}
/**
* Set multiple cache values
*
* @param array $items
2021-02-19 12:18:38 -05:00
* @param DateInterval|int|null $expires
* @return bool
*/
2021-02-19 12:18:38 -05:00
public function setMultiple(array $items, DateInterval|int|null $expires = NULL): bool
{
$this->validateKeys($items, TRUE);
2021-02-19 12:18:38 -05:00
if ($expires instanceof DateInterval)
{
$expires = $expires->s;
}
return ($expires === NULL)
? $this->conn->setMulti($items)
: $this->conn->setMulti($items, $expires);
2016-09-05 16:43:37 -04:00
}
/**
* Remove an item from the cache
*
* @param string $key
* @return boolean
*/
2016-10-19 09:57:06 -04:00
public function delete(string $key): bool
2016-09-05 16:43:37 -04:00
{
2020-05-07 17:17:03 -04:00
return $this->conn->delete($key);
2016-09-05 16:43:37 -04:00
}
/**
* Remove multiple items from the cache
*
* @param string[] $keys
* @return boolean
*/
2016-10-19 09:57:06 -04:00
public function deleteMultiple(array $keys = []): bool
2016-09-05 16:43:37 -04:00
{
$this->validateKeys($keys);
$deleted = $this->conn->deleteMulti($keys);
2020-05-08 18:58:25 -04:00
if (is_array($deleted))
2020-05-08 18:58:25 -04:00
{
foreach ($deleted as $key => $status)
2020-05-08 18:58:25 -04:00
{
if ($status !== TRUE)
{
return FALSE;
}
2020-05-08 18:58:25 -04:00
}
return TRUE;
2020-05-08 18:58:25 -04:00
}
2016-09-05 16:43:37 -04:00
}
/**
* Empty the cache
*
* @return boolean
*/
2016-10-19 09:57:06 -04:00
public function flush(): bool
2016-09-05 16:43:37 -04:00
{
return $this->conn->flush();
}
2016-09-06 20:26:28 -04:00
2016-09-06 17:03:43 -04:00
/**
* Set the specified key to expire at the given time
*
* @param string $key
* @param int $expires
* @return boolean
*/
2016-10-19 09:57:06 -04:00
public function expiresAt(string $key, int $expires): bool
2016-09-06 17:03:43 -04:00
{
if ($this->exists($key))
{
return $this->conn->touch($key, $expires);
}
2016-09-06 20:26:28 -04:00
$this->getLogger()->log('warning','Tried to set expiration on a key that does not exist');
2016-09-06 20:26:28 -04:00
2016-09-06 17:03:43 -04:00
return FALSE;
}
}