fix Memcached namespace

This commit is contained in:
ghost 2023-08-09 21:02:09 +03:00
parent 98c789d7d4
commit 904cba3b4b

View file

@ -12,7 +12,7 @@ class Memory {
public function __construct(string $host, int $port, string $namespace, int $timeout)
{
$this->_memcached = new Memcached();
$this->_memcached = new \Memcached();
$this->_memcached->addServer($host, $port);
$this->_namespace = $namespace;