vote up 3 vote down star
3

Hi,

Is it possible to somehow mimic the slower download speeds of my website, as if it is hosted on a web server, but from my localhost?

It's hard to test things like Ajax loading icons when the content loads so quick from your local machine so I think this could help me out a lot?

I was wondering if there was a tool that you could use for this or if you'd need to use javascript to add setTimeout or setInterval code?

flag

7 Answers

vote up 4 vote down check

If you are using Windows, then download the Fiddler tool Fiddler.

This will setup a HTTP proxy that you can use for testing HTTP headers and view all the HTTP traffic within the PC and browser. You can then use the Rules > Performance > Simulate Modem Speeds option to slow the browser's HTTP connection.

There is also a Fiddler Switch plug-in for Firefox available to toggle the Fiddler proxy.

link|flag
Current versions of Fiddler install a Firefox addon already; no need to install a separate plugin. – EricLaw -MSFT- Jun 26 at 4:26
Ah okay, nice - thanks for letting me know! – Luke Jun 26 at 6:02
vote up 0 vote down

This question may help you out.

Personally, I add something like this at the top of my library file or whatever file always gets included:

if(DEBUG) {
    sleep(2);
}

The above is PHP, but most languages are going to have something similar.

link|flag
vote up 1 vote down

If you're on a *nix platform, you could alter the 'nice' level to basically make your process an afterthought behind most others until you achieve a level of 'lag' that is satisfactory to your needs.

link|flag
vote up 0 vote down

One option is (if You are on linux, but other unix system have similar tools) Traffic shaping (google for 'HTB', 'qdics' and 'tc' command)

Second option will be apache_mod_cband module, this is also probably easer to get going.

link|flag
vote up 0 vote down

You could try Charles. It's cross platform - I use it and it works really well.

http://www.charlesproxy.com/

link|flag
vote up 0 vote down

On windows you can use Proxomitron or you can install fiddler (for ie). Both let you set the download speed.

link|flag
vote up 1 vote down

First of all, please never mangle your code with if ( DEBUG ) workSlowly(); statements. You will get bitten by this practice, and it will hurt.

Second of all, use one of the traffic throttling solutions which have already been posted here. I'm going to add a Java-based solution: Sloppy. It's dead easy to set up and runs everywhere where Java runs.

link|flag
Thanks for the downvote. Appreciate the explanatory comment. – Robert Munteanu Jun 23 at 9:27
Was the second one your evil twin brother? – Robert Munteanu Jun 23 at 9:35

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.