Tagged Questions

0
votes
0answers
28 views

Joystick values not correct

Hi, I have a problem with respect of getting the state of a steering wheel (Logitech Steering Wheel). It looks like it doesn't perceive the throttle - rglSlider[0] is always 0, even if the …
0
votes
0answers
30 views

throttle connections to apache load balancer

I have a load balancer using apache: http://httpd.apache.org/docs/2.2/mod/mod%5Fproxy%5Fbalancer.html The problem is our bandwidth. We're trying to get more, but the ISP has to run new lines and …
4
votes
3answers
175 views

How do I throttle my site’s API users?

The legitimate users of my site occasionally hammer the server with API requests that cause undesirable results. I want to institute a limit of no more than say one API call every 5 seconds or n calls …
1
vote
5answers
123 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 …
7
votes
7answers
658 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 …
0
votes
1answer
506 views

Bandwidth throttling for Apache<2.2 on Windows (mod_throttle?)

Hey there Does anyone know of a windows build of mod_throttle for Apache 2.2 or lower? Or perhaps another means by which to throttle bandwidth. I need to throttle as low as 64k for a local speed …
8
votes
9answers
1k views

Tool for degrading my network connection?

I've written some applications than heavily use network, and I would to test it over a slow network. I'm looking for a tool to simulate this kind of connections. Edit: I'm only interested in Windows …
6
votes
7answers
699 views

CPU throttling in C++

I was just wandering if there is an elegant way to set the maximum CPU load for a particular thread doing intensive calculations. Right now I have located the most time consuming loop in the thread …