Tagged Questions

8
votes
9answers
3k views

Throttling method calls to M requests in N seconds

I need a component/class that throttles execution of some method to maximum M calls in N seconds (or ms or nanos, does not matter). In other words I need to make sure that my method is executed no ...
6
votes
6answers
2k views

How to throttle login attemps in Java webapp?

I want to implement an efficient mechanism to throttle login attemps in my Java web application, to prevent brute-force attacks on user accounts. Jeff explained the why, but not the how. Simon ...
4
votes
5answers
897 views

Can I throttle requests made by a distributed app?

My application makes Web Service requests; there is a max rate of requests the provider will handle, so I need to throttle them down. When the app ran on a single server, I used to do it at the ...
1
vote
0answers
63 views

Throttling - Maximum method calls per second

I am consuming a web service via WCF and I want to restrict service method calls by N every second. Is there a class that will help me achieve this. Or do I need to manually update a count and reset ...
1
vote
2answers
97 views

.NET Throttle algorithm

i would like to implement a good throttle algorithm by in .net (C# or VB) but i cannot figure out how could i do that. The case is my asp.net website should post requests to another website to fetch ...