Hello to all!
From the NGINX documentation "If redundant requests within the burst limit are not required to be delayed, the nodelay parameter should be used". That is, having "nodelay" requests within the burst be processed immediately?
Then is there a difference between:
limit_req_zone $binary_remote_addr zone=one:10m rate=1r/s; limit_req zone=one burst=5 nodelay;
AND
limit_req_zone $binary_remote_addr zone=one:10m rate=6r/s; limit_req zone=one;
Thank you for your reply!