What is the difference between:
10r/s and burst=0
1r/s and burst=9 nodelay
1st case has processing size capacity of 10r/s. So it allows 10 requests to happen in parallel per second, 11th concurrent request is rejected.
In 2nd case the processing size is 1r/s. So if 10 requests are made, then 1 will start executing, and remaining 9 will be added to the burst queue and because there is nodelay keyword, they all will execute immediately. 11th concurrent request is rejected.
Is this correct interpretation?