Jamm\Memory\MemcachedDecorator::__construct PHP Метод

__construct() публичный Метод

public __construct ( $host = 'localhost', $port = 11211 )
    public function __construct($host = 'localhost', $port = 11211)
    {
        $this->memcached = new \Memcached();
        $this->memcached->addServer($host, $port);
        $this->memcached->setOption(\Memcached::OPT_COMPRESSION, true);
    }