How to throttle requests in a Web Api?
The proposed solution is not accurate. There are at least 5 reasons for it. The cache does not provide interlocking control between different threads, therefore multiple requests can be process at the same time introducing extra calls skipping through the throttle. The Filter is being processed ‘too late in the game’ within web API pipeline, … Read more