Server, client may potentially consumes, produces 1 million requests per minute respectively (depends on your machine) *keep in mind requests will be uniformly send within a minute
https://www.reddit.com/r/golang/comments/8torkz/1million_requests/
- Unit tests
-
go test -v
- Benchmark tests
-
go test -bench=.
- Server
go build -o server *.go
- Client
go build -o client *.go
time ./server
time ./client -ReqPMin 600
(600 requests within a minute)
Running on AMD A8-5557M Quad Core with turbo core technology up to 3.1 GHz