SPDY Web Server Performance Comparison Tool

I created a web server that uses SPDY. I would like to compare my web server under SPDY and compare the results with standard TCP / HTTP protocols. Are there any tools that I could use to simulate more than 1000 requests to my web server under SPDY?

And what tool can I use to simulate more than 1000 UDP messages sent to the application (just to compare latency with UDP with the SPDY parameter)?

+4
source share
1 answer

Since SPDY offers the benefits of multi-user loading, I would recommend a client-side testing tool such as PhantomJS and compute document.onload times to fully measure loaded resources and JavaScript execution. ApacheBench will measure server response time (excluding JS and related files, and I'm not sure if it reviews TLS handshakes on every connection.

Here's a test that evaluates 350 queries: http://www.httpvshttps.com/

0
source

Source: https://habr.com/ru/post/1498033/


All Articles