-
Notifications
You must be signed in to change notification settings - Fork 5
/
README
37 lines (25 loc) · 814 Bytes
/
README
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
Simple TCP benchmark tool in Go
===============================
This package provides simple command line tool to benchmark
number of concurrent TCP connections against your server.
This tool has been made while investing Go at Cubox - an awesome
dev shop from Uruguay!
Installation
------------
Use the `goinstall` tool:
$ goinstall github.com/nu7hatch/gonetbench
... or install it manually:
$ git clone git://github.com/nu7hatch/gonetbench.git
$ cd gonetbench
$ make install
Usage
-----
Here's a trivial example of usage:
$ gonetbench -n 500 -s 10 127.0.0.1:8080
For more information use:
$ gonetbench -help
Copyright
---------
Copyright (C) 2011 by Krzysztof Kowalik <chris@nu7hat.ch> and
Bruno Aguirre <elcuervo@cuboxsa.com>
Released under the MIT license. See COPYING file for details.