Tagged Questions

GZip/gzip is both the name for a compressed data format and any of several software applications implementing this format. It is commonly used to compress HTTP requests and responses, and combined with the tar format for archival.

learn more… | top users | synonyms

63
votes
10answers
22k views

JavaScript implementation of Gzip

I'm writing a Web application that needs to store JSON data in a small, fixed-size server-side cache via AJAX (think: Opensocial quotas). I do not have control over the server. I need to reduce the ...
57
votes
4answers
14k views

Deflate compression browser compatibility and advantages over GZIP

UPDATE Sept 11 2010: A testing platform has been created for this here HTTP 1.1 definitions of GZIP and DEFLATE (zlib) for some background information: " 'Gzip' is the gzip format, and ...
52
votes
9answers
23k views

Enable IIS7 gzip

How can I enable IIS7 to gzip static files like js and css and how can I test if IIS7 is really gziping them before sending to the client? Thanks!
37
votes
13answers
4k views

Gzip versus minify

I had a somewhat lively discussion the other day about minifying Javascript and CSS versus someone who prefers using Gzip. I'll call this person X. X said that Gzip allready minifies the code, since ...
34
votes
5answers
10k views

Android: HTTP communication should use “Accept-Encoding: gzip”

I've a HTTP communication to a webserver requesting JSON data. I'd like compress this data stream with Content-Encoding: gzip. Is there a way I can set Accept-Encoding: gzip in my HttpClient? The ...
31
votes
1answer
2k views

why does IIS7 static/dynamic compression only work for 200 responses?

Why is IIS7.5 only performing static and dynamic compression when the response code is 200? How do I make it compress all responses where the request had an appropriate Accept-Encoding header? ...
28
votes
13answers
20k views

How to implement GZip compression in ASP.NET?

I am trying to implement GZip compression for my asp.net page (including my CSS and JS files). I tried the following code, but it only compresses my .aspx page (found it from YSlow) HttpContext ...
27
votes
7answers
16k views

How can I get gzip compression in IIS7 working?

I have installed Static and dynamic compression for IIS7, as well as setting the two web.config values at my application ( Virtual Folder ) level. As I understand it, I don't need to enable ...
20
votes
7answers
9k views

Why use deflate instead of gzip for text files served by Apache?

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 ...
18
votes
5answers
5k views

How can I pre-compress files with mod_deflate in Apache 2.x?

I am serving all content through apache with Content-Encoding: zip but that compresses on the fly. A good amount of my content is static files on the disk. I want to gzip the files beforehand rather ...
17
votes
1answer
5k views

How can I decompress a gzip stream with zlib?

Gzip format files (created with the gzip program, for example) use the "deflate" compression algorithm, which is the same compression algorithm as what zlib uses. However, when using zlib to inflate a ...
17
votes
3answers
7k views

WCF GZip Compression Request/Response Processing

How do I get a WCF client to process server responses which have been GZipped or Deflated by IIS? On IIS, I've followed the instructions here on how to make IIS 6 gzip all responses (where the ...
17
votes
6answers
2k views

Why do real-world servers prefer gzip over deflate encoding?

We already know deflate encoding is a winner over gzip with respect to speed of encoding, decoding and compression size. So why do no large sites (that I can find) send it (when I use a browser that ...
17
votes
4answers
6k views

Scriptmanager Asp.Net Mvc

I'd like to have some of the scriptmanager features in the new Asp.net MVC model 1- Script combining 2- Resolving different paths for external javascipt files 3- Minify and Gzip Compression Here ...
17
votes
6answers
15k views

What is the easiest way to add compression to WCF in Silverlight?

I have a silverlight 2 beta 2 application that accesses a WCF web service. Because of this, it currently can only use basicHttp binding. The webservice will return fairly large amounts of XML data. ...
15
votes
2answers
2k views

Serving gzipped css and javascript from Amazon Cloudfront

I've been looking for ways of making my site load faster and one way that I'd like to explore is making greater use of Cloudfront. Because Cloudfront was originally not designed as a custom-origin ...
14
votes
3answers
3k views

Does .NET's HttpWebResponse uncompress automatically GZiped and Deflated responses?

I am trying to do a request that accepts a compressed response var request = (HttpWebRequest)HttpWebRequest.Create(requestUri); request.Headers.Add(HttpRequestHeader.AcceptEncoding, "gzip,deflate"); ...
14
votes
7answers
3k views

Compression formats with good support for random access within archives?

This is similar to a previous question, but the answers there don't satisfy my needs and my question is slightly different: I currently use gzip compression for some very large files which contain ...
14
votes
5answers
7k views

How do you download and extract a gzipped file with C#?

I need to periodically download, extract and save the contents of http://data.dot.state.mn.us/dds/det_sample.xml.gz to disk. Anyone have experience downloading gzipped files with C#?
13
votes
5answers
359 views

Is there a benefit to minifying Javascript before gzipping it?

Is there some valid purpose to minifying before compressing? It seems highly unlikely that the gzipped file is smaller if it's minified first. I ask because diagnosing production problems in ...
11
votes
6answers
2k views

How to check if InputStream is Gzipped?

Is there any way to check if InputStream has been gzipped? Here's the code: public static InputStream decompressStream(InputStream input) { try { GZIPInputStream gs = new ...
11
votes
3answers
2k views

Python: Creating a streaming gzip'd file-like?

I'm trying to figure out the best way to compress a stream with Python's zlib. I've got a file-like input stream (input, below) and an output function which accepts a file-like (output_function, ...
11
votes
7answers
8k views

How to decompress Gzip string in ruby?

Zlib::GzipReader can take "an IO, or -IO-lie, object." as it's input, as stated in docs. Zlib::GzipReader.open('hoge.gz') {|gz| print gz.read } File.open('hoge.gz') do |f| gz = ...
10
votes
2answers
970 views

GZip Compression On IIS 7.5 is not working

I am trying to support GZip compression for my static files under IIS (which should be enabled by default but not) but not working so far. Here is the the section under <system.webServer> node ...
10
votes
5answers
3k views

Does Apache Commons HttpClient support GZIP?

Does the library Apache Commons HttpClient support Gzip? We wanted to use enable gzip compression on our Apache server to speed up the client/server communications (we have a php page that allows our ...
10
votes
5answers
4k views

HttpWebRequest & Native GZip Compression

When requesting a page with Gzip compression I am getting a lot of the following errors: System.IO.InvalidDataException: The CRC in GZip footer does not match the CRC calculated from the ...
10
votes
6answers
2k views

How can I get ASP.NET AJAX to send its JSON response with GZip compression?

I have compression enabled within IIS7 and it works as expected on all responses except for those constructed by ASP.NET AJAX. I have a web service that provides data to the client. When the web ...
9
votes
2answers
1k views

Using GZIP with html pages served from Amazon S3

Does anyone know of any problems serving gzipped HTML pages using Amazon S3. I have the need to minimize the file size of our HTML files (ie serving up compressed HTML, CSS and javascript files) - but ...
9
votes
2answers
226 views

Reading last lines of gzipped text file

Let's say file.txt.gz has 2GB, and I want to see last 100 lines or so. zcat <file.txt.gz | tail -n 100 would go through all of it. I understand that compressed files cannot be randomly accessed, ...
9
votes
3answers
566 views

Is gzip compression useful for mobile devices?

I'm wondering if anyone has a clue on whether the gzip compression is as much useful on mobile devices than it is on a desktop computer. Will the phone use more battery? Or will it save some because ...
9
votes
7answers
4k views

Why can't browser send gzip request?

If webserver can send gzip response, why can't browser sent gzip request?
8
votes
1answer
527 views

Is this a bug in the Java GZipInputStream class?

I noticed that some of my gzip decoding code seemed to be failing to detect corrupted data. I think that I have traced the problem to the Java GZipInputStream class. In particular, it seems that ...
8
votes
5answers
4k views

Node.js: Gzip compression?

Am I wrong in finding that Node.js does no gzip compression and there are no modules out there to perform gzip compression? How can a anyone use a web server that has no compression? What am I missing ...
8
votes
1answer
3k views

NSURLConnection/NSURLRequest gzip support!

Does anyone knows if NSURLConnection/NSURLRequest have support for gzip requests. If does, can you provide more information? Thanks in advance!
8
votes
1answer
3k views

Compressing content with PHP ob_start() vs Apache Deflate/Gzip?

Most sites want to compress their content to save on bandwidth. However, When it comes to apache servers running PHP there are two ways to do it - with PHP or with apache. So which one is faster or ...
8
votes
4answers
2k views

Sending gzipped data in WebRequest?

I have a large amount of data (~100k) that my C# app is sending to my Apache server with mod_gzip installed. I'm attempting to gzip the data first using System.IO.Compression.GZipStream. PHP receives ...
8
votes
5answers
8k views

Tomcat Compression Does Not Add a Content-Encoding: gzip in the Header

I am using Tomcat to compress my HTML content like this: <Connector port="8080" maxHttpHeaderSize="8192" maxProcessors="150" maxThreads="150" minSpareThreads="25" maxSpareThreads="75" ...
8
votes
3answers
1k views

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

We recently switched some of our sites from deflate to gzip and noticed a significant increase in cpu load on our servers.
7
votes
4answers
345 views

Zip files with Java: Is there a limit?

I'm creating a backup routine for my application with Java. However, when the zip file is over 4GB, or has more than 65,000 files (approximately), the zip file is corrupted. I'm also testing the ...
7
votes
3answers
6k views

TypeError: 'str' does not support the buffer interface

string = input("Please enter the text you want to compress") file = input("Please enter the desired filename") with gzip.open(file+".gz","wb") as f_out: f_out.write(string) The ...
7
votes
4answers
1k views

How to pre-compress very large html files

I need to pre-compress some very large html/xml/json files (large data dumps) using either gzip or deflate. I never want to serve the files uncompressed. They are so large and repetitive that ...
7
votes
1answer
656 views

Automatically decompress gzip response via WebClient.DownloadData

I wish to automatically uncompress GZiped response. I am using the following snippet: mywebclient.Headers[HttpRequestHeader.AcceptEncoding] = "gzip"; mywebclient.Encoding = Encoding.UTF8; try { ...
7
votes
2answers
1k views

.NET: Is it possible to get HttpWebRequest to automatically decompress gzip'd responses?

In this answer, I described how I resorted to wrappnig a GZipStream around the response stream in a HttpWebResponse, in order to decompress it. The relevant code looks like this: HttpWebRequest ...
7
votes
2answers
3k views

Python decompressing gzip chunk-by-chunk

I've a memory- and disk-limited environment where I need to decompress the contents of a gzip file sent to me in string-based chunks (over xmlrpc binary transfer). However, using the zlib.decompress() ...
7
votes
3answers
8k views

How to check if a Unix .tar.gz file is a valid file without uncompressing?

I also found this link. But I was wondering if there is any ready made command line solution?
7
votes
7answers
1k views

How do I get Java to use my multi-core processor?

I'm using a GZIPInputStream in my program, and I know that the performance would be helped if I could get Java running my program in parallel. In general, is there a command-line option for the ...
7
votes
5answers
3k views

How to 'minify' Javascript code

JQuery has two versions for download, one is Production (19KB, Minified and Gzipped), and the other is Development (120KB, Uncompressed Code). Now the compact 19kb version, if you download it, you ...
7
votes
2answers
3k views

Known issues with gzip and IE6

I read that some versions of IE6 have known issues with gzip compression, but I have found little explanation as to what these issues are. What are the known issues with gzip compression and IE6?
7
votes
2answers
2k views

Serving gzipped content from django

I'm trying to serve a gzipped version of a text/html page in Django, but Firefox is telling me there's a content encoding error. NOTES: I realize this is not a best practice and I'm most likely ...
7
votes
5answers
5k views

CSS/JS GZip Compression with Asp.Net

I am currently on a hosted Virtual Server, I want to enable GZip compression for my Asp.Net 3.5 site, how do I go about starting? I have tried using 'packed' JS files, but they don't work, I am ...

1 2 3 4 5 21