Top "Gzip" questions

GZip/gzip is both the name for a compressed data format and any of several software applications implementing this format.

Cleaner way to read/gunzip a huge file in python

So I have some fairly gigantic .gz files - we're talking 10 to 20 gb each when decompressed. I need to loop …

python gzip subprocess gunzip
Tomcat 7 GZIP compression not working

I have added the following lines in tomcat's conf/server.xml file to enable gzip compression but its not working. …

tomcat compression gzip server.xml
Gzip versus minify

I had a somewhat lively discussion the other day about minifying Javascript and CSS versus someone who prefers using Gzip. …

compression gzip minify
Does python urllib2 automatically uncompress gzip data fetched from webpage?

I'm using data=urllib2.urlopen(url).read() I want to know: How can I tell if the data at a …

python gzip urllib2
Express gzip static content

Express and connect appeared to have removed their gzip functions because they were too inefficient. Are there any reliable solutions …

javascript node.js express gzip
Compress a string to gzip in Java

public static String compressString(String str) throws IOException{ if (str == null || str.length() == 0) { return str; } ByteArrayOutputStream out = new ByteArrayOutputStream(); GZIPOutputStream …

java gzip gunzip
gzip compression of chunked encoding response?

I'm trying to get my webserver to correctly gzip an http response that is chunk encoding. my understanding of the …

http gzip chunked-encoding
GZIP compression + htaccess deflate

Can I have both .htaccess with: DEFLATE On php, images, html files etc. + php header with: ob_start("gzhandler") ? If …

php compression gzip http-compression
uncompress a .txt.gz file in mac?

How do I uncompress a .txt.gz file in mac? I already tried unzip file.txt.gz but it says …

compression gzip
Java: Error creating a GZIPInputStream: Not in GZIP format

I am trying to use the following Java code to compress and uncompress a String. But the line that creates …

java compression gzip gzipinputstream