0
votes
1answer
61 views
Best way to throttle email on Windows Server 2008
I have a server with SMTP set up for my site's outbound email. In order to not get blacklisted I'd like to limit outbound emails to under an arbitrary threshold (let's say 500 per …
1
vote
5answers
567 views
Throttling login attempts
(This is in principal a language-agnostic question, though in my case I am using ASP.NET 3.5)
I am using the standard ASP.NET login control and would like to implement the followi …
7
votes
7answers
1k views
Simulate delayed and dropped packets on Linux
I would like to simulate packet delay and loss for UDP and TCP on Linux to measure the performance of an application. Is there a simple way to do this?
2
votes
1answer
247 views
What limits WCF ServiceModelService.Instances?
I'm attempting to load test a WCF service with (IIS6/Server2003/BasicHttpBinding). The service is throttled as follows:
<serviceThrottling maxConcurrentCalls="100" maxConcurre …
0
votes
3answers
94 views
Socket throttling because client not reading data fast enough?
I have a client/server connection over a TCP socket, with the server writing to the client as fast as it can.
Looking over my network activity, the production client receives data …
4
votes
4answers
709 views
WCF Concurrent requests piling up on the server when using WSHttpBinding
I have a WCF client/server app which is communicating over HTTP using the WSHttpBinding.
Server Setup: self-hosting, using the standard WCF ServiceHost.
My actual service class is …
1
vote
3answers
140 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?
…
2
votes
3answers
216 views
How can I throttle a download in a Perl program?
Is there any Perl module available for download throttling? I would like to download a certain file but limit the download rate to a specific number of KB/sec .
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 meth …
0
votes
1answer
44 views
YouTube style throttling in Flash
I may be completely insane on this one, but it seems like the download/buffer rate of YouTube videos is faster at the beginning and the further the buffer point gets from the curre …
0
votes
2answers
73 views
Yahoo-Pipes Throttles Requests: What are the limits?
Yesterday, I began encountering '999' errors on Yahoo-Pipes. It looks like they throttle requests from a given IP address.
Does anyone know the Yahoo-Pipes' requests per minute …
18
votes
4answers
1k views
Best way to implement request throttling in ASP.NET MVC?
We're experimenting with various ways to throttle user actions in a given time period:
Limit question/answer posts
Limit edits
Limit feed retrievals
For the time being, we're u …
1
vote
3answers
267 views
Forcing asmx web service to handle requests one at a time
I am debugging an ASMX web service that receives "bursts" of requests. i.e., it is likely that the web service will receive 100 asynchronous requests within about 1 or 2 seconds. E …
6
votes
9answers
798 views
Throttling CPU/Memory usage of a Thread in Java?
I'm writing an application that will have multiple threads running, and want to throttle the CPU/memory usage of those threads.
There is a similar question for C++, but I want to …
5
votes
3answers
1k views
C# WCF: WCF stops responding after about 10 or so calls (throttling)
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- …
