This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
stevej@netty-test-8:~$ ./slow_cooker_linux_amd64 -host perf-cluster -concurrency 10 -qps 100 http://proxy-test-4d:4140 | |
# sending 1000 GET req/s with concurrency=10 to http://proxy-test-4d:4140 ... | |
# good/b/f t goal% min [p50 p95 p99 p999] max bhash change | |
2017-06-09T18:16:35Z 9721/0/0 10000 97% 10s 0 [ 1 2 5 412 ] 412 0 + | |
2017-06-09T18:16:45Z 9105/0/0 10000 91% 10s 0 [ 1 2 4 626 ] 626 0 | |
2017-06-09T18:16:55Z 9195/0/0 10000 91% 10s 0 [ 1 2 3 413 ] 413 0 | |
2017-06-09T18:17:05Z 9387/0/0 10000 93% 10s 0 [ 1 2 5 1003 ] 1003 0 | |
2017-06-09T18:17:15Z 9511/0/0 10000 95% 10s 0 [ 1 3 4 412 ] 412 0 | |
2017-06-09T18:17:25Z 9544/0/0 10000 95% 10s 0 [ 1 3 4 416 ] 416 0 | |
2017-06-09T18:17:35Z 9548/0/0 10000 95% 10s 0 [ 1 2 4 413 ] 413 0 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
pico-8 cartridge // http://www.pico-8.com | |
version 8 | |
__lua__ | |
fps = 30 | |
current_frame = 0 | |
x_max = 128 | |
y_max = 128 | |
updated = 0 | |
players = {} |
OlderNewer