Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

7
votes
2answers
366 views

Stack Exchange API compliant request throttle implementation on Google App Engine Cloud infrastructure

I have been writing a Google Chrome extension for Stack Exchange. It's a simple extension that allows you to keep track of your reputation and get notified of comments on Stack Exchange sites. ...
7
votes
3answers
2k views

What is the best way to implement a rate-limiting algorithm for web requests?

Possible/partial duplicates: What’s a good rate limiting algorithm? Throttling method calls to M requests in N seconds Best way to implement request throttling in ASP.NET MVC? I am looking for the ...
5
votes
4answers
94 views

Should i use Sleep() or just deny them

Im implementing a delay system so that any IP i deem abusive will automatically get an incremental delay via Sleep(). My question is, will this result in added CPU usage and thus kill my site ...
5
votes
3answers
89 views

Should I rate-limit or reduce my database queries?

I'm creating a PHP script that imports some data from text files into a MySQL database. These text files are pretty large, an average file will have 10,000 lines in it each of which corresponds to a ...
5
votes
2answers
189 views

Rate Limiting Calls To an Api Using Cache in ColdFusion

Hi I am using ColdFusion to call the last.fm api, using a cfc bundle sourced from here. I am concerned about going over the request limit, which is 5 requests per originating IP address per second, ...
4
votes
1answer
277 views

Rate limiting REST requests on Heroku

To avoid abuse I'd like to add rate limiting to the REST API in our Rails application. After doing a bit of research into this it looks like the best practice is to move this responsibility into the ...
3
votes
1answer
84 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
2answers
131 views

rate-limiting a function call in rails per user

Anyone have any idea how I might go about this? Having a pretty hard time finding information online. Best I found is the curbit it gem but I can only think of how to implement that application-wise.
3
votes
5answers
1k views

How to limit rate of requests to web services in Python?

I'm working on a Python library that interfaces with a web service API. Like many web services I've encountered, this one requests limiting the rate of requests. I would like to provide an optional ...
2
votes
2answers
77 views

Limiting concurrency and rate for Python threads

Given a number threads I want to limit the rate of calls to the worker function to a rate of say one per second. My idea was to keep track of the last time a call was made across all threads and ...
2
votes
1answer
86 views

Swing rate limiting

I have a long repaint operation that I would like to rate-limit, ie make sure it gets called once every N milliseconds at most. My current solution is somewhat unsatisfactory: I use a Swing Timer ...
2
votes
1answer
159 views

Calls-per-day rate limiting in ASP.NET MVC 3?

I've seen Jarrod Dixon's solution (Best way to implement request throttling in ASP.NET MVC?) for implementing calls-per-second rate limiting. I'm now trying to figure out how to build a similar filter ...
2
votes
2answers
336 views

How do I rate limit a public API?

I have an algorithm that receives input and delivers output which I would like developers to use like an API. To prevent denial of service attack and excessive overuse, I want some rate limits or ...
2
votes
1answer
248 views

If you make a client-side getJSON() call with (&callback=) to a site that is rate-limited by IP address, do they see your site or the end-user's?

If your web app uses web service API calls to an external source, some of these sources will rate-limit you based on IP address. If you make these calls from client-side JavaScript -- meaning that ...
2
votes
2answers
281 views

How do I implement rate limiting in an ASP.NET MVC site?

I'm building an ASP.NET MVC site where I want to limit how often authenticated users can use some functions of the site. Although I understand how rate-limiting works fundamentally, I can't visualize ...
2
votes
2answers
643 views

Rate limiting a ruby file stream

I am working on a project which involves uploading flash video files to a S3 bucket from a number of geographically distributed nodes. The video files are about 2-3mb each, and we are only sending ...
1
vote
0answers
74 views

Bandwidth rate limiting per customer for multi-tenant SaaS in a virtual server environment

What is the best practice for bandwidth rate limiting per customer for multi-tenant SaaS in a virtual server environment like the Rackspace CloudServers? Apache2 is currently our web server.
1
vote
0answers
150 views

boto ElasticMapReduce throttling and rate limiting

I've run into rate limting from Amazon EMR a few times via boto API with the following: boto.exception.EmrResponseError: EmrResponseError: 400 Bad Request <ErrorResponse ...
1
vote
3answers
592 views

getting all tweets of a twitter user, rate limit problem

I've been trying to get all tweets of a some public(unlocked) twitter user. I'm using the REST API: ...
1
vote
1answer
365 views

Memcache-based rate-limiting algorithm? (Token bucket?)

I'm looking for an efficient approach to rate-limiting request from Google App Engine to a third party service. The third party service rate limits requests on a per-account basis, and on the Google ...
1
vote
1answer
379 views

What's the best approach to rate limit an expensive operation with PHP & Memcached?

I came up with this: if($prog->memcache) { $r = $prog->memcache->get("ratelimit:{$_SERVER['REMOTE_ADDR']}"); if(!empty($r)) $prog->errorClose('This IP has been flagged for potential ...
0
votes
0answers
23 views

How To Rate-Limit An API

What is the best way to limit requests for an API? Basically, we want to limit users to 360 API requests an hour (a request every 10 seconds). What comes to mind is tracking every API request and ...
0
votes
0answers
37 views

Rate limit for google reader stream API?

I would like to know what is the rate limit for google reader stream API per IP. Also, if say we reach the rate limit will the API return a HTTP status 401 or captcha? Since google reader API's don't ...
0
votes
1answer
48 views

WCF REST Service Denial of Service Defence

I have created a WCF REST Search Service, and now want to know how to implement Denial of Service Defence to limit the number of request.
0
votes
1answer
61 views

Twitter API wrong rate-limit for users/lookup using oAuth

i'm trying to get the users/lookup for about 400 users using oAuth. The result data is ok but when i check the rate limit it was based on ip rather than oAuth. I've checked the oAuth credentials with ...
0
votes
1answer
97 views

Twitter API bug - Tweets provides the wrong User_id. Work arounds?

I'm looking for a workaround to this Published Twitter API bug: http://code.google.com/p/twitter-api/issues/detail?id=214 When you fetch tweets, the tweet returns an incorrect User_id. However it ...
0
votes
0answers
160 views

socket IO rate limit on incoming user data

I have a Node JS server which uses Socket IO for a multi-user experience RIA. I want to put a rate limit on incoming data from user sockets (say 10 messages-in per second). I figure I can do this by ...
0
votes
0answers
57 views

Controlling API limits: client and server side

I've looked around quite a bit for this with no luck, so I thought I'd post away on a question that's been nagging at me for a while. Twitter, for example, limits their API at around 350 per hour. If ...
0
votes
1answer
132 views

How do I get the follower count for thousands of Twitter users per hour, without getting rate limited?

I know that I can use "users/show" and get "followers_count" or I can do "followers/ids" and count the number of IDs returned, but both of these methods are rate-limited at 150 requests per hour when ...
0
votes
1answer
147 views

Tools for API rate limiting, monitoring and analytics

Are there any good solutions for Rate Limiting Analytics Monitoring a REST API. I'm preferably looking for self hosted open source solutions. FWIW The API is PHP/MySQL based. I found Apigee and ...
0
votes
2answers
171 views

Any way to get the users home timeline and their user details in a single request?

I have a Twitter "widget" on my site where I allow users to login and pull in their twitter details and home timeline. I'm using OAuth for this and I have a little concern over rate limiting. In my ...
0
votes
1answer
81 views

Limit the rate of requests to an API in a CGI script

The script that I'm writing sometimes makes requests to an API and the API requires that requests are limited to a maximum of 1 per second. What is the most straight forward way of limiting my ...
0
votes
4answers
545 views

How to rate-limit clicks on a button to once per minute in Javascript

I have a PHP-based web application that monitors the status of a process and displays a page with that status. Users can click a button on the page to update the status. However, the processing load ...