throttling Questions

1

I have an application that automatically tweets every time a user does something... Users can easily perform that action once every second if they like. Twitters rate limit says that it pays at...
Forgot asked 9/7, 2013 at 6:17

2

Solved

I made an XNA image viewer, but it always redraws the scene, even if it's not changing, and it's making my netbook burn like hell, so I'd like it to pause drawing when nothing's changing. Reducing...
Dreamy asked 15/5, 2013 at 0:6

1

Solved

I'm trying to implement some throttles on our REST API. A typical approach is after a certain threshold to block the request (with 403 or 429 response). However, I've seen one api that adds a delay...
Moguel asked 28/2, 2013 at 9:17

0

I'm building an API and I'd like to limit the requests made to it. I'd like to limit it by the number of requests per user per time (hours, days), the whole number of requests (for all users) per ...
Neuromuscular asked 26/4, 2013 at 12:6

1

Solved

We are tracking Facebook Page and Post metrics for a number of clients, and we have some questions regarding high CPU intensity and too many calls for Post/comments - according to what is being rep...

2

Solved

I have an observable that I am subscribing on. This obsevable will be returning an object that has a property called ActivationType that can be set multiple times. What I am trying to achieve is l...
Silicone asked 6/3, 2013 at 17:10

3

Solved

Background Echo Nest have a rate limited API. A given application (identified in requests using an API key) can make up to 120 REST calls a minute. The service response includes an estimate of the...

2

Solved

I have an actor in Akka that will process messages to create certain entities. Some fields on these entities are computed based on the state of other entities in the database at the moment of creat...
Runin asked 28/1, 2013 at 14:48

4

I'm developing a .NET4-based application that has to request third-party servers in order to get information from them. I'm using HttpClient to make these HTTP requests. I have to create a hundred...
Overdraft asked 29/11, 2012 at 3:41

11

Solved

I was just reading this post The definitive guide to form-based website authentication on Preventing Rapid-Fire Login Attempts. Best practice #1: A short time delay that increases with the number...
Root asked 19/1, 2010 at 3:42

4

Solved

I'm using async-await in .Net. How can I limit the number of concurrent asynchronous calls?
Roshelle asked 15/9, 2012 at 17:4

5

Solved

I have seen many questions in this (and others) forum with the same title, but none of them seemed to address exactly my problem. This is it: I have got a JVM that eats all the CPU on the machine t...
Behn asked 6/9, 2012 at 14:18

3

Solved

I am using thirdparty component which accepts maximum 25KB data at a time. I am passing array of the objects to this third party component from my application. However the amount of data that my ...
Carpentaria asked 27/8, 2012 at 9:16

1

Solved

Hi, According to this link the default values of WCF 4.0 is this : MaxConcurrentSessions: 16 * processorcount MaxConcurrentSessions: MaxConcurrentCalls + MaxConcurrentSessions 100 * processor...
Migratory asked 16/5, 2012 at 8:41

2

Solved

How can i process errors generated by rack-throttle gem when rate limit is excedeed? Now i just get a response containing the following: Internal Server Error undefined method `each' for "403 For...
Latea asked 12/3, 2012 at 10:45

6

I'm trying to do some very simple request throttling on my ASP.NET web project. Currently I'm not interested in globally throttling requests against DOS attacks, but would like to artificially dela...
Amelina asked 17/4, 2009 at 17:12

2

Solved

I have an application in which I am sending network data over WiFI. Everything is fine until I turn the display off or the device goes to 'sleep'. I'm already locking the WiFi however, it seems to ...
Lindyline asked 1/10, 2011 at 1:5

2

Solved

I want to throttle requests to my web server so as to thwart web scraping and denial of service attacks against my site. I'm willing to be relatively lax, the key thing is that no one request...
Horology asked 19/9, 2011 at 6:26

2

Solved

I got a slider that on value change forces a fairly serious computation, so I want to throttle it to fire actual event after for example 50ms pass when user has finished sliding it. While I learne...
Haematoma asked 20/9, 2011 at 14:18

2

Solved

I have a WCF service deployed in a console app with BasicHTTPBinding and SSL enabled. The following attribute is set as well: [AspNetCompatibilityRequirements(RequirementsMode = AspNetCompatibilit...
Fridafriday asked 16/3, 2010 at 12:45

6

Solved

I have a WCF Service and an application with a Service Reference to it, and with the application I have a loop and in each iteration it's making a call to a method in this wcf web-service. The pro...
Blakely asked 11/4, 2009 at 1:14

1

Solved

I'm using the following code (written by another user) to throttle ajax requests in a livesearch function: JSFiddle if you prefer a demo: http://jsfiddle.net/4xLVp/ It seems buggy, though. Cleari...
Paronychia asked 6/8, 2011 at 15:23

2

Solved

I would like to throttle the following ajax live search function I wrote. I made it so that requests are only sent if a minimum of 2 characters are entered. I also want to throttle the ajax for a ...
Guyette asked 6/8, 2011 at 3:7

6

I need to load a large data set onto a production database. 15 files need to each be uploaded and inserted into a table. Each is about 500 Mb. I have two ID columns that need to be indexed. I...
Colquitt asked 10/5, 2011 at 0:28

2

Solved

This post suggests I can use a cursor to fetch from a query at a throttled rate. How do I do this? My aim is to reduce the impact of this low-priority query on other higher-priority queries.
Willms asked 19/3, 2011 at 11:13

© 2022 - 2024 — McMap. All rights reserved.