Tagged Questions
The ratelimit tag has no wiki summary.
3
votes
1answer
83 views
rate limiting algorithm suggestions for the given scenario
What is the best mechanism to implement the below rate limiting use-cases. General algorithms like Token Bucket can be used but I want the implementation to be in the context of memcached. Appreciate ...
3
votes
3answers
349 views
Multiple twitter users' feed on one site without reaching the rate limit
I have a large number of twitter users I wish to sydicate onto a website using PHP and caching the tweets in MySQL. However I seem to be stumped by the rate-limit problem when ever I access the API. ...
2
votes
2answers
901 views
Rate limiting Django admin login with Nginx to prevent dictionary attack
I'm looking into the various methods of rate limiting the Django admin login to prevent dictionary attacks.
One solution is explained here: simonwillison.net/2009/Jan/7/ratelimitcache/
However, I ...
1
vote
2answers
84 views
Find date stored in MySQL row, find all entries after that date in one query
I have a table that stores actions for rate-limiting purposes. What I want to do is fetch the newest row that has a 'key_action' (the action that starts the time for rate-limiting) and then find all ...
1
vote
2answers
153 views
Does an API Rate Limit see javascript requests as coming from the domain's IP, or the user's IP?
An API has a rate limit based upon the number of hits from a certain IP address.
My requests are AJAX - so they're performed by a javascript living somewhere on a page.
Does the IP being rate ...