vote up 6 vote down star
2

What advantages do either method offer for html, css and javascript files served by a LAMP server. Are there better alternatives?

The server provides information to a map application using Json, so a high volume of small files.

See also Is there any performance hit involved in choosing gzip over deflate for http compression?

flag

7 Answers

vote up 16 vote down check

GZip is simply deflate plus a checksum and header/footer. Deflate is faster, though, as I learned the hard way.

gzip vs deflate graph

link|flag
Seems to be mainly the checksum, which would match with the smaller difference on faster systems. – schnaader Dec 23 '08 at 11:17
On the Intel chips it doesn't make a bit of difference, since they get that fancy SSE4.2 "CRC32" instruction... – Ant P Feb 22 at 18:01
only the very very newest Intel chips have that, though -- Core i7 or better – Jeff Atwood May 5 at 2:36
2  
Not to mention that zlib doesn't have support for the extension, and even if it did, the CRC32 instruction in SSE 4.2 uses the polynomial 1EDC6F41, and the gzip format uses the polynomial EDB88320 - totally different algorithms, effectively. – Jack Lloyd Oct 20 at 15:59
vote up 2 vote down

mod_deflate requires fewer resources on your server, although you may pay a small penalty in terms of the amount of compression.

If you are serving many small files, I'd recommend benchmarking and load testing your compressed and uncompressed solutions - you may find some cases where enabling compression will not result in savings.

link|flag
vote up 1 vote down

The main reason is that deflate is faster to encode than gzip and on a busy server that might make a difference. With static pages it's a different question, since they can easily be pre-compressed once.

link|flag
presumably with gzip you can't start transmitting the header until you've obtained, stored and compressed all the data? (because you need the checksum to create the header) – ojw Jun 30 at 11:25
In the gzip format, the checksum comes at the end of the file, specifically so one can start writing deflate blocks as they are processed without having to hold everything up. – Jack Lloyd Oct 20 at 16:00
vote up 1 vote down

I think there's no big difference between deflate and gzip, because gzip basically is just a header wrapped around deflate (see RFCs 1951 and 1952).

link|flag
vote up 0 vote down

Just for future reference:

Under a debian system (I'm on ubuntu) with Apache2 and the deflate module already installed (which it is by default), you can enable deflate compression in two easy steps:

a2enmod deflate
/etc/init.d/apache2 force-reload

And you're away! I found pages I served over my adsl connection loaded MUCH faster!

link|flag
vote up 0 vote down

There shouldn't be any difference in gzip & deflate for decompression. Gzip is just deflate with a few dozen byte header wrapped around it including a checksum. The checksum is the reason for the slower compression. However when you're precompressing zillions of files you want those checksums as a sanity check in your filesystem. In addition you can utilize commandline tools to get stats on the file. For our site we are precompressing a ton of static data (the entire open directory, 13,000 games, autocomplete for millions of keywords, etc.) and we are ranked 95% faster than all websites by Alexa. Faxo Search. However, we do utilize a home grown proprietary web server. Apache/mod_deflate just didn't cut it. When those files are compressed into the filesystem not only do you take a hit for your file with the minimum filesystem block size but all the unnecessary overhead in managing the file in the filesystem that the webserver could care less about. Your concerns should be total disk footprint and access/decompression time and secondarily speed in being able to get this data precompressed. The footprint is important because even though disk space is cheap you want as much as possible to fit in the cache.

link|flag
GZip probably checks the checksum on decompression, hence the speed difference for decompression. – Seun Osewa Nov 5 at 8:02
vote up -1 vote down

if I remember correctly

  • gzip will compress a little more than deflate
  • deflate is more efficient
link|flag
gzip is deflate with a header. And HTTP 1.1 deflate is actually zlib (which is also a wrapper around deflate) – David Murdoch Oct 20 at 19:14

Your Answer

Get an OpenID
or

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