|
1 년 전 | |
---|---|---|
include | 1 년 전 | |
src | 1 년 전 | |
.gitignore | 4 년 전 | |
LICENSE | 4 년 전 | |
README.md | 3 년 전 | |
VelocyStream.md | 4 년 전 | |
VelocyStream_zh.md | 4 년 전 | |
rebar.config | 1 년 전 | |
start.sh | 4 년 전 |
arangodb erlang driver
erlang otp21.2+ arangodb 3.6.2 3.7 3.9
Efficient, fast and easy to use.
https://www.arangodb.com/docs/stable/http/batch-request.html
rebar3 compile
revar3: rebar3 shell
Non-connection pooling mode
Make a connection first
{ok, Socket} = agVstCli:connect([]). %% Use default Settings
%% Then you can then call various apis using Socket as the first argument
agMgrDb:curDbInfo(Socket).
Connection pooling mode
application:ensure_all_started(eArango). %% start app
agVstCli:startPool(poolName, [], []). %% start pool
%% Then you can then invoke various apis using poolName as the first argument
agMgrDb:curDbInfo(poolName).
该驱动中所有的字符串 一律值 二进制的字符串 QueryPars 和 Headers为map 其中的 key -> value 必须为字符串