I've thought of something better that what I was originally thinking of (I was originally going to grep a dump of all the outputs from the requests...):
do:
Code:
time for ((a=1; a <= 1000; a++)); do dig @127.0.0.3 test.example.com; done
That will tell you how long it took to do 1000 dig requests in a row.
Dave