mirror of https://gitee.com/bigwinds/arangodb
25 lines
713 B
Markdown
25 lines
713 B
Markdown
Arangobench Examples
|
|
====================
|
|
|
|
Start Arangobench with the default user and server endpoint:
|
|
|
|
arangobench
|
|
|
|
Run the 'version' test case with 1000 requests, without concurrency:
|
|
|
|
--test-case version --requests 1000 --concurrency 1
|
|
|
|
Run the 'document' test case with 2000 requests, with two concurrent threads:
|
|
|
|
--test-case document --requests 1000 --concurrency 2
|
|
|
|
Run the 'document' test case with 2000 requests, with concurrency 2,
|
|
with async requests:
|
|
|
|
--test-case document --requests 1000 --concurrency 2 --async true
|
|
|
|
Run the 'document' test case with 2000 requests, with concurrency 2,
|
|
using batch requests:
|
|
|
|
--test-case document --requests 1000 --concurrency 2 --batch-size 10
|