v0.35.0
Notable Change
Add support for multiple connections #85
Addresses #50.
Adds a new flag --connections
to specify the number of connections to use. This parameter cannot exceed concurrency option. The specified number of connections will be distributed evenly to be shared among the concurrency goroutine workers. So for example a concurrency of 10
and using 5
connections will result in 10
goroutine workers, each pair of 2
workers sharing 1
of the 5
connections. Each worker will get its share of the total number of requests specified using -n
option.
Changelog
b85a2e0 Add connections to reporter
1d85a9f Add multiple connection tests
832ca2c Merge branch 'master' into multiple_connections
715a312 Merge pull request #84 from bojand/templates-1
d3c4a31 Merge pull request #85 from bojand/multiple_connections
41bd769 Update issue templates
bf74322 add multiple connections options. work in progress
f045d2d start work on potential support for multiple connections