In order to test my program, I want to send about 50 http requests as fast as possile. Currently I'm using bash script which calls curl & to send each request like
curl "http://my.host.com/test.php?param=1" &
curl "http://my.host.com/test.php?param=2" &
curl "http://my.host.com/test.php?param=100" &
but it seems not fast enough. I guess since each curl call will establish a tcp connection first, and performance can be improved if the connection is established only once. Is there any other tools to send request effciently?