If, from the same IP, in the same second, you'll make two calls to api/values, the last call will get blocked. But if in the same second you call api/values/1 too, the request will go through because it's a different route.
Is there any development / workaround to consider
/api/values
and
/api/values/{0}
the same in terms of throttling?
Considering the element as, let's say value_id, if you serve
/api/values?value_id={0}
The latter is counted in the same throttling as the collection call.
As you point out in the documentation
Is there any development / workaround to consider
/api/values
and/api/values/{0}
the same in terms of throttling?
Considering the element as, let's say value_id, if you serve
/api/values?value_id={0}
The latter is counted in the same throttling as the collection call.