How should the rate
be interpreted in the nginx rate limiting module?
10 r/s
means 1 request every 100ms - this means granularity is 100ms; and 2nd request within the 100ms will get rejected.
Does 30 r/m
mean 1 request every 2 seconds (2000ms)? Thus granularity is 2000ms? Therefore 2nd request within the 2000ms will get rejected?
Similarly, 6 r/m
means 1 request every 10 seconds (10000ms) Thus granularity is 10000ms?