Throttling is a mechanism to regulate the rate at which processing is performed
Questions tagged [throttling]
1092 questions
0
votes
1 answer
iOS how to throttle ASIHTTPRequest number of simultaneous connections?
I am working on an RSS Reader which uses ASIHTTPRequest to download asynchronously the posts for each feed.
During the initial run, lots of connections happen at once and it appears to freeze the UI even though I use a 3-MOC solution (private for…

mirx
- 148
- 11
0
votes
1 answer
event object for Throttle-debounce
I'm using Ben Alman's Throttle-debounce plugin.
When I call .throttle like that:
$(window).scroll($.throttle(250, function() {console.log(1)}));
throttled function fires.
But I have to check if scroll event isn't triggered. So when I do…

onlydimon
- 525
- 4
- 11
0
votes
1 answer
Uploading huge data when Sharepoint resource throttling is set
Do this throttle limit creates a problem when we upload bunch of items which exceeds throttle limit?
We have a .NET application which uploads pictures in sharepoint. Let's say the throttle limit is 2000 and we upload 5000 pictures, will this give an…

CODError
- 779
- 2
- 10
- 25
0
votes
0 answers
Is there a unix command that makes throttling another command simple?
I know it's possible to do this yourself, but I figured I'd see if anyone knew of something that works like this imaginary command, throttle-check:
check_server_is_ok || throttle-check some_unique-command-key '1 hour' &&\
send_spammy_email
So,…

Aaron Sokoloski
- 71
- 2
0
votes
1 answer
Get a rough idea of server load from PHP
I am looking to implement a rudimentary dynamic throttling mechanism on my PHP/Apache web server based on server load and am wondering how I might get some idea of how busy the server is, either from the server itself (ideally) or from the…

devios1
- 36,899
- 45
- 162
- 260
0
votes
2 answers
Fetching stats on multiple tracks from soundcloud
I want to get all tracks with 0 to 1 plays and am looking at the playback_count stats from http://api.soundcloud.com/tracks/90891876.json?client_id=XXX URL, where playback_count is included in the json response. We have almost 1500 sound snippets,…

The Silencer
- 777
- 6
- 16
0
votes
1 answer
How to get the information that throttling limit has been reached?
Inside a Camel route, I need to throttle the messages when a limit of request/s is reached. I've found the Throttler EIP. It works fine but I need when the limit is reached to raise an alert, is there a way to do this ?
I had a look at the code but…

melmass
- 21
- 1
0
votes
1 answer
wcf operation times out without error
I have a .NET 3.5 BasicHttpBinding no security WCF service hosted on IIS 6.0.
I have service throttling bumped up as per MS recommendations.
My service operation is getting called a few hundreds of time conccurrently, and at some point the client…

user1477327
- 144
- 8
0
votes
1 answer
Bandwidth throttling for Files in C#
I have an application that upload a file to S3 Amazon which internally uses ThrottledStream class to control the bandwidth. I want to give the user the provision to adjust bandwidth as per the percentage between 0-100%, as client will not understand…

Haseena Parkar
- 939
- 2
- 12
- 28
0
votes
2 answers
WCF stop responding intermitently
I have a ASP.Net web site that get all business logic from a WCF hosting site (IIS). Once in a while, it looks like the backend WCF frozen and that makes web front-end stop responding. I have to recycle both application pools to make it work…

Eric Nguyen
- 53
- 1
- 8
0
votes
1 answer
need to slow mass email sending in coldfusion 4.5
I'm running CF Server 4.510 on Microsoft Windows Server 2003 R2 Standard SP 2.
One of our list serve applications on this server sends out a large amount of emails, prompting an excessive out-queue length alert from Barracuda. What I'm looking to…

Barrett Chamberlain
- 119
- 1
- 2
- 16
0
votes
1 answer
GCM the right way to implement turn based multiplayer in GAE + Android
I am currently developing an android game that is turnbased and uses GAE on the server side. Now until now I used GCM to notify when it is a players turn to act, but I came across some threads, that said GCM throttles a lot (speaking about 20…

TMeyer
- 3
- 2
0
votes
0 answers
KnockoutJS throttle input
I'm trying to implement something like a typesafe ViewModel using KnockoutJS. It works pretty well until I start to update observables via HTML input tags.
I have implemented type extender which returns computed observable:
return ko.computed({
…

mailgpa
- 65
- 1
- 11
0
votes
0 answers
Tastypie query limit
Is there any way to handle query per user limitations with tastypie API library ?
I would like for example to limit all users to 200 queries per day.
I looked all over the documentation and only found how to handle query results ranges…

Mibou
- 936
- 2
- 13
- 25
0
votes
1 answer
Mouse event throttling architecture
I have a set of nested DOM elements with mouse event handlers (mouseover, mouseout). Side effects of the events update other views; these updates are potentially computationally expensive, and can create annoying visual flicker, so I would like to…

Gene Golovchinsky
- 6,101
- 7
- 53
- 81