Please support our Windows Servers and IIS advertiser: Programming Forums
Views: 4668 | Replies: 2
![]() |
I've been doing a lot of reading about compressing your servers output stream.
Before gzip compression, the bink.nu homepage was about 321k! This means that it would take about 89 seconds for a normal 56k user to download the page.
After gzip compression, the page is 79k! Now it takes the same 56k user 22 seconds to download the page.
If your server can support a little extra load (to compress the output stream), then I highly reccomend using a output stream compression engine!
Here is a list of .NET/ISAPI (for IIS) modules that I'm aware of:
.NET Modules
ASPAccelerator.NET
http://www.intesoft.net/aspaccelerator/
Blowery HttpCompression Module
http://www.blowery.org/code/HttpCompressionModule.html
ISAPI Filters
XCompress
http://www.xcompress.com/
IIS Accelerator
http://www.iisaccelerator.com/
SqueezePlay
http://www.innermedia.com/
jetNEXUS for IIS
http://www.preactholdings.com/perfor...xus/jet-nexus/
PipeBoost
http://www.pipeboost.com/
TurboIIS Pro
http://www.objectsfarm.com/turboiis/
Maybe someone can post some good ones for Apache..
Before gzip compression, the bink.nu homepage was about 321k! This means that it would take about 89 seconds for a normal 56k user to download the page.
After gzip compression, the page is 79k! Now it takes the same 56k user 22 seconds to download the page.
If your server can support a little extra load (to compress the output stream), then I highly reccomend using a output stream compression engine!
Here is a list of .NET/ISAPI (for IIS) modules that I'm aware of:
.NET Modules
ASPAccelerator.NET
http://www.intesoft.net/aspaccelerator/
Blowery HttpCompression Module
http://www.blowery.org/code/HttpCompressionModule.html
ISAPI Filters
XCompress
http://www.xcompress.com/
IIS Accelerator
http://www.iisaccelerator.com/
SqueezePlay
http://www.innermedia.com/
jetNEXUS for IIS
http://www.preactholdings.com/perfor...xus/jet-nexus/
PipeBoost
http://www.pipeboost.com/
TurboIIS Pro
http://www.objectsfarm.com/turboiis/
Maybe someone can post some good ones for Apache..
-Ryan Hoffman
ASP.NET Specialist / Webmaster, Extended64.com.
Please do not email or PM me with support questions. Please direct them to the forums instead.
ASP.NET Specialist / Webmaster, Extended64.com.
Please do not email or PM me with support questions. Please direct them to the forums instead.
•
•
Join Date: Aug 2003
Location: Jersey - You gotta problem wit dat?
Posts: 334
Reputation:
Rep Power: 8
Solved Threads: 5
For Apache, in httpd.conf, look for this line:
AddEncoding x-gzip gz tgz
It's usually on by default, but if it isn't, you can add/uncomment it within <IfModule mod_mime.c> so it reads like this:
<IfModule mod_mime.c>
AddEncoding x-gzip gz tgz
It's usually on by default, but if it isn't, you can add/uncomment it within <IfModule mod_mime.c> so it reads like this:
<IfModule mod_mime.c>
If you don't have that module loaded (mod_mime.c) then it won't do you any good, so check the Modules section to ensire it's being loaded.
AddEncoding x-compress Z
AddEncoding x-gzip gz tgz
If you spend more on coffee than on IT security, you will be hacked.
What's more, you deserve to be hacked.
-- former White House cybersecurity czar Richard Clarke
What's more, you deserve to be hacked.
-- former White House cybersecurity czar Richard Clarke
I think a web page that you download to your system shouldnt' be more then 64k max.
It is kind of unspoken rule between web developers. And I agree.
100+ is maybe because its a big article.
250+ is maybe because it has a big image file
but
300+ is just too big.
gzipped pages should load instantly, for they wont result in more then 12k per page.
It is kind of unspoken rule between web developers. And I agree.
100+ is maybe because its a big article.
250+ is maybe because it has a big image file
but
300+ is just too big.
gzipped pages should load instantly, for they wont result in more then 12k per page.
:cheesy: a vBulletin fan community @ vBulletin.nl :cheesy:
![]() |
•
•
•
•
Currently Active Users Viewing This Thread: 1 (0 members and 1 guests)





Linear Mode