ElasticSearch\Transport\Memcached::__construct PHP Method

__construct() public method

public __construct ( $host = "127.0.0.1", $port = 11311, $timeout = null )
    public function __construct($host = "127.0.0.1", $port = 11311, $timeout = null)
    {
        parent::__construct($host, $port);
        $this->conn = new Memcache();
        $this->conn->connect($host, $port, $timeout);
    }