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 ...
0
votes
2answers
71 views

How to prioritize and throttle requests in Java?

My application handles Web Service requests(real time requests and a batch program firing requests) and calls an external system to retreive data. External system has a limit on requests, it can ...
0
votes
1answer
76 views

number of queries limited in mysql

hi I use a java library(jwpl) to connect a database of mysql. number of queries that I can be asked on a certain term is limited. for example query="select * from table where keyword= term" can be ...