Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

56
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 ...
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 ...
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 ...
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"); ...
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
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 ...
6
votes
1answer
119 views

Caching Images, JS and CSS in Apache using deflate

I am currently caching my CSS, JS and images using deflate in my Apache configuration. Here's my code: AddOutputFilterByType DEFLATE text/plain AddOutputFilterByType DEFLATE text/html ...
6
votes
2answers
834 views

JavaScript inflate implementation (possibly FF 3.6 only)

I'm writing some scripts that are using the HTML 5 file API in FireFox 3.6. I got some deflated (compressed) files, and I need to inflate (uncompress) them. I found a few scripts while googling, but ...
5
votes
1answer
608 views

GZip or Deflate compression for asp.net mvc 2 without access to server config

I tried to use the method described here ASP.NET MVC Action Filter - Caching and Compression . At first the results where encouraging as indeed the server started sending GZip encoded files but after ...
5
votes
3answers
615 views

Node.js/Javascript Equivalent of Java's Deflater class

I have a Java backend that uses Inflater. I wish to feed data to it via Node.js. Is there any equivalent to the Deflater class? EDIT: I should clarify a little. I have tried using ...
4
votes
2answers
554 views

One library for deflate, gzip, and zlib in .net

First, let's define some commonly confused terms: deflate = compression_algorithm; zlib = header + deflate + trailer; gzip = header + deflate + trailer; I'm looking for a library that will ...
3
votes
3answers
64 views

How to decompress stream deflated with java.util.zip.Deflater in .NET?

I have a dump after java.util.zip.Deflater (can confirm it's valid because Java's Inflater opens it fine) and need to open it in .NET: byte[] content = ReadSample(sampleName); var input = new ...
3
votes
3answers
199 views

Custom DEFLATE implementation to speed up PNG encoding

I'm optimizing a PNG encoder for use within Flash SWFs (but I'm writing it in HaXe). I've so far managed to speed things up a fair bit, mostly by using speedy memory read/writes. While profiling my ...
3
votes
3answers
608 views

GZip or Deflate for HTTP compression

Which compression method is better? I've heard lots of back and forth about GZip being more widely used, but Deflate being faster (in some instances). Is there an accepted standard on which one to use ...
3
votes
1answer
193 views

Does changing scheme from gzip to deflate fix ie6 incompatibility?

Internet explorer 6 VS1 doesn't support gzip compression correctly. It does however understand deflate. Is it sufficient to change the scheme name in applicationhost.config from gzip to deflate to fix ...
3
votes
1answer
928 views

Is it possible to force jQuery to make AJAX calls for URLs with gzip/deflate enabled?

I have a web service that is willing to output gzip/deflated data. I've verified that the service will respond with raw JSON or with gzip'd JSON using wget and curl. I want to consume this web ...
3
votes
3answers
542 views

Any way to chunk gzip with Apache and PHP

I have a web application on a site that takes a while (~10 seconds) to complete a portion of the page near the bottom - it has been as optimized as it can be, and caching is not an option. We have ...
3
votes
1answer
420 views

Compressing xls content with apache deflate module

I am trying to compress an excel spreadsheet being sent from my application using apache deflate module. I have added the following line to the my sites-enabled file: AddOutputFilterByType DEFLATE ...
3
votes
2answers
451 views

What are some good strategies for determining block size in a deflate algorithm?

I'm writing a compression library as a little side project, and I'm far enough along (My library can extract any standard gzip file, as well as produce compliant (but certainly not yet optimal) gzip ...
2
votes
1answer
36 views

DEFLATE Decoding

I am currently reading about the DEFLATE method for encoding/decoding data. I understand that the process is composed of two parts: i. Replace duplicate information (within a specified window) with ...
2
votes
2answers
71 views

Deflate (ZIP) compressing on the fly in Java using InputStream and OutputStream abstraction only. Possible?

I'm currently trying to write a custom streams proxy (let's call it in that way) that can change the content from the given input stream and produce a modified, if necessary, output. This requirement ...
2
votes
1answer
99 views

Is Android InflaterInputStream same as popular ZLIB Windows library?

I'm trying to uncompress data that was compressed using the ZLIB library written by Jean-loup Gailly back in the 1990s. I think it is a popular library (I see a lot of programs that ship the ...
2
votes
2answers
107 views

Compressing (Gzip or Deflate) Shows, Lists and views in Couchdb

It seems that couchdb automatically compress all its _attachments when requested with the correct header. But unfortunately this doesn't happen for views, show or lists. Is there any way to achieve a ...
2
votes
1answer
380 views

Cannot decompress ZLIB/DEFLATE data

I'm trying to extract data from compressed bytes from network capture file (PCAP.) Data from some of these packets don't have ZLIB header (the first 2 bytes, where lower 4 bits of first byte is ...
2
votes
1answer
251 views

Java deflate response

Hello all I want to make a filter for tomcat to deflate all responces of certain MIME type. Any guidelines? ... String ae = request.getHeader("accept-encoding"); if (ae != null && ...
2
votes
2answers
426 views

decompress deflate64

I've got a compressed string of bytes coming out of a database which I need to decompress so as to retrieve the rtf file in there. This is the requirement. I tried to use DotNetZip and it has given ...
2
votes
3answers
842 views

Recommend a ZIP assembly for Silverlight 4

I've been using the Silverlight version of #ziplib (SharpZipLib) but it seems seriously flawed because the DeflateOutputStream always produces 2 bytes (120, 156) for any input (hell of a compression ...
2
votes
8answers
1k views

Deflate command line tool

I'm looking for a command line wrapper for the DEFLATE algorithm. I have a file (git blob) that is compressed using DEFLATE, and I want to uncompress it. The gzip command does not seem to have an ...
2
votes
3answers
3k views

Compress/Decompress NSString in objective-c (iphone) using GZIP or deflate

I have a web-service running on Windows Azure which returns JSON that I consume in my iPhone app. Unfortunately, Windows Azure doesn't seem to support the compression of dynamic responses yet (long ...
2
votes
1answer
579 views

Java Deflater strategies - DEFAULT_STRATEGY, FILTERED and HUFFMAN_ONLY

I'm trying to find a balance between performance and degree of compression when gzipping a Java webapp response. In looking at the Deflater class, I can set a level and a strategy. The levels are ...
2
votes
3answers
1k views

Are zlib.compress on Python and Deflater.deflate on Java (Android) compatible?

I am porting a Python application to Android and, at some point, this application has to communicate with a Web Service, sending it compressed data. In order to do that it uses the next method: def ...
2
votes
2answers
3k views

JavaScript DEFLATE Implementation

Are there any open source DEFLATE encoder implementations for JavaScript? I need it to generate a binary format on the client-side that requires DEFLATE.
2
votes
3answers
632 views

How to deal with deflated response by urllib2?

I currently use following code to decompress gzipped response by urllib2: opener = urllib2.build_opener() response = opener.open(req) data = response.read() if ...
2
votes
2answers
634 views

gzdeflate() and large amount of data

I've been building a class to create ZIP files in PHP. An alternative to ZipArchive assuming it is not allowed in the server. Something to use with those free servers. It is already sort of working, ...
2
votes
1answer
2k views

Is there a GZIP merger that merges two GZIP files without decompressing them?

Let's say there's a.gz, and b.gz. $ gzip_merge a.gz b.gz -output c.gz I'd like to have this program. Of course, $ cat a.gz b.gz > c.gz doesn't work. Because the final DEFLATE block of a.gz has ...
1
vote
1answer
21 views

Exclude a single file from DEFLATE in .htaccess

I have set my htaccess file to cache and deflate the majority of the usual file types to increase speed, one file particularly though seems to behave oddly when cached and I want to try to exlude this ...
1
vote
0answers
29 views

node.js - easy http requests with gzip/deflate compression

I'm trying to figure out how the best way to easily send HTTP/HTTPS requests and to handle gzip/deflate compressed responses along with cookies. The best I found was https://github.com/mikeal/request ...
1
vote
1answer
69 views

Using DeflateStream in C++?

I'm currently trying to port some C# codes involving usage of DeflateStream into standard C++ without the support of .NET framework. One example of such function is: public static byte[] ...
1
vote
1answer
55 views

The zlib implementation of inflate algorithm

In the inftrees.c, which is the code to construct the lookup table from a canonical huffman representation, the author write: /* replicate for those indices with low len bits equal to huff */ ...
1
vote
1answer
70 views

How do I check if apache is using “compression” and “far-future” expiration dates?

How can I check and see if my web server is serving up content with compression and far future expires headers? YSlow is still telling me that I have resources that are being sent with plain text and ...
1
vote
2answers
758 views

Unexpected end of ZLIB input stream

I'm trying to round-trip a JSON string to a byte array with DeflaterOutputStream, but the code below throwing java.io.EOFException: Unexpected end of ZLIB input stream. It works when you replace the ...
1
vote
1answer
87 views

gzip or deflate files can it be merged together? for api

i have api that let you get one or more files content in one request and i have them as deflate/gzip and normal text, for now im using normal text, but was wondering if i can merge deflate files and ...
1
vote
1answer
202 views

JSON truncated when compressing HTTP responses

When I apply gzip or deflate compression to my HTTP responses, I seem to be losing the last bracket in my JSON structures. For example: Result without compression: ...
1
vote
4answers
212 views

java.util.zip.deflater equivalent in c#

does anyone know how can I achieve java's Deflater.deflate() functionality in .NET so it would be understandable for java's Infalter.inflate() method? regards, Rafal
1
vote
1answer
867 views

Using Java Deflater/Inflater with custom dictionary causes IllegalArgumentException

The following code is based on the example given in the javadocs for java.util.zip.Deflater. The only changes I have made is to create a byte array called dict and then set the dictionary on both the ...
1
vote
0answers
372 views

Using a proxy to replace/modify http response data

I have wriite a small proxy (in Java), with the intention of modifying specific data from a web server response. The data is a deflate compressed XML file: only some of the elements do I want to ...
1
vote
2answers
394 views

C++ zlib inflate failing - translation of c# fixup?

I'm trying to inflate a string using zlib's deflate, but it's failing, apparently because it doesn't have the right header. I read elsewhere that the C# solution to this problem is: public static ...
1
vote
2answers
218 views

“Sync flush” for Zlib Deflate

I need a zlib deflate compressed stream. In my implementation I must use a single stream over the entire session. during this session small chunks of data will be passed through the compressed stream. ...
1
vote
1answer
379 views

compressing and decompressing source data gives result different than source data

In my app I need to Decompress data written by DataContractSerializer to compression Deflate Stream in another app, edit the decompressed data and Compress it again. Decompression works fine, but ...
1
vote
1answer
242 views

Deflate (or similar) compression available for Silverlight 3?

Is there any deflate implementation for Silverlight 3 that is compatible with the .NET one? Or, barring that, is there any similar compression algorithm available for both .NET and Silverlight I can ...

1 2 3