Skip to content

Instantly share code, notes, and snippets.

@making
Last active May 24, 2018 10:25
Show Gist options
  • Select an option

  • Save making/f32e81c5684a5fd810039854091dd793 to your computer and use it in GitHub Desktop.

Select an option

Save making/f32e81c5684a5fd810039854091dd793 to your computer and use it in GitHub Desktop.

image

Spring MVC

$ siege -b -c 100 -r 10 http://localhost:8080

Transactions:		        1000 hits
Availability:		      100.00 %
Elapsed time:		       10.55 secs
Data transferred:	        0.00 MB
Response time:		        1.05 secs
Transaction rate:	       94.79 trans/sec
Throughput:		        0.00 MB/sec
Concurrency:		       99.20
Successful transactions:        1000
Failed transactions:	           0
Longest transaction:	        1.30
Shortest transaction:	        1.00

image

$ siege -b -c 200 -r 10 http://localhost:8080

Transactions:		        2000 hits
Availability:		      100.00 %
Elapsed time:		       10.95 secs
Data transferred:	        0.01 MB
Response time:		        1.07 secs
Transaction rate:	      182.65 trans/sec
Throughput:		        0.00 MB/sec
Concurrency:		      196.13
Successful transactions:        2000
Failed transactions:	           0
Longest transaction:	        1.40
Shortest transaction:	        1.00

image

$ siege -b -c 300 -r 10 http://localhost:8080

Transactions:		        3000 hits
Availability:		      100.00 %
Elapsed time:		       15.60 secs
Data transferred:	        0.01 MB
Response time:		        1.51 secs
Transaction rate:	      192.31 trans/sec
Throughput:		        0.00 MB/sec
Concurrency:		      290.39
Successful transactions:        3000
Failed transactions:	           0
Longest transaction:	        2.37
Shortest transaction:	        1.04

image

Spring WebFlux

$ siege -b -c 100 -r 10 http://localhost:8080

Transactions:		        1000 hits
Availability:		      100.00 %
Elapsed time:		       10.54 secs
Data transferred:	        0.00 MB
Response time:		        1.05 secs
Transaction rate:	       94.88 trans/sec
Throughput:		        0.00 MB/sec
Concurrency:		       99.38
Successful transactions:        1000
Failed transactions:	           0
Longest transaction:	        1.21
Shortest transaction:	        1.00

image

$ siege -b -c 200 -r 10 http://localhost:8080

Transactions:		        2000 hits
Availability:		      100.00 %
Elapsed time:		       10.84 secs
Data transferred:	        0.01 MB
Response time:		        1.06 secs
Transaction rate:	      184.50 trans/sec
Throughput:		        0.00 MB/sec
Concurrency:		      196.23
Successful transactions:        2000
Failed transactions:	           0
Longest transaction:	        1.21
Shortest transaction:	        1.00

image

$ siege -b -c 300 -r 10 http://localhost:8080

Transactions:		        3000 hits
Availability:		      100.00 %
Elapsed time:		       10.77 secs
Data transferred:	        0.01 MB
Response time:		        1.04 secs
Transaction rate:	      278.55 trans/sec
Throughput:		        0.00 MB/sec
Concurrency:		      288.94
Successful transactions:        3000
Failed transactions:	           0
Longest transaction:	        1.20
Shortest transaction:	        1.00

image

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment