2

图的并发部分是什么?线程数?并发调用?

基准测试 ArangoDB 和 CouchDB 的测试结果

我试图接近更高的数字,但不确定如何模仿并发部分。我的 couchDB 数字总是高得离谱。谢谢您的帮助!

4

1 回答 1

1

它是用于运行测试的同时客户端连接数。客户端是 httpress ( https://bitbucket.org/yarosla/httpress/wiki/Home ):

httpress <options> <url>
  -n num   number of requests     (default: 1)
  -t num   number of threads      (default: 1)
  -c num   concurrent connections (default: 1)
  -k       keep alive             (default: no)
  -z pri   GNUTLS cipher priority (default: NORMAL)
  -h       show this help

并发是指作为 httpress 的“-c”参数给出的并发连接。

于 2014-04-13T12:16:11.417 回答