The Perl Toolchain Summit needs more sponsors. If your company depends on Perl, please support this very important event.

NAME

ArangoDB::ConnectOptions - Connect option of ArangoDB

DESCRIPTION

Connect options of ArangoDB.

METHODS

new($options)

Constructor. $options is a connect option(Hash reference. The attributes of $options are:

host

Hostname or IP address of ArangoDB server. Default: localhost

port

Port number of ArangoDB server. Default: 8529

timeout

Seconds of HTTP connection timeout.

keep_alive

If it is true, use HTTP Keep-Alive connection. Default: false

auth_type

Authentication method. Supporting "Basic" only.

auth_user

User name for authentication

auth_passwd

Password for authentication

proxy

Proxy url for HTTP connection.

inet_aton

A callback function to customize name resolution. Takes two arguments: ($hostname, $timeout_in_seconds).

See Furl::HTTP.

host()

port()

timeout()

keep_alive()

auth_type()

auth_user()

auth_passwd()

proxy()

inet_aton()

AUTHOR

Hideaki Ohno <hide.o.j55 {at} gmail.com>