gzip

Handling gzipped content on Android

Hello, I'm trying to parse this file on Android using the DOM method. The code in question is: try { URL url = new URL("https://www.beatport.com/en-US/xml/content/home/detail/1/welcome_to_beatport"); InputSource is = new InputSource(url.openStream()); DocumentBuilderFactory dbf = DocumentBuilderFactory.newInstance(); ...

Is GZip compression worthwhile with AMF

We've got a Flex/Java application using BlazeDS and we're investigating reducing the size of the payloads being passed between our server and the client. Since AMF is a binary format and supposed to be fairly compact, is there any benefit to turning on GZip compression? Has anyone else done this before and did you see any significant ga...

Why do I use up so much memory when I read a file into memory in Perl?

I have a text file that is 310MB in size (uncompressed). When using PerlIO::gzip to open the file and uncompress it into memory, this file easily fills 2GB of RAM before perl runs out of memory. The file is opened as below: open FOO, "<:gzip", "file.gz" or die $!; my @lines = <FOO>; Obviously, this is a super convenient way to open g...

Gzip compressed website not working with IE

In my site I have some gzipped copies of the most used and largest files (because my hosting doesn't allow using the gzip compression module). I have inserted rewrite rules in the htaccess file to send the gzipped copies when available, like this: <FilesMatch "\.html\.gz$"> ForceType text/html Header set Content-Encoding: gzip </Fi...

How do I compress a folder with the GZip module inside of Python?

The title says it all... I'm creating Python software that compresses files/folders... How would I create a section of the code that asks for the user input of the folder location and then compresses it. I currently have the code for a single file but not a folder full of files. Please explain in detail how to do this. Thanks! ...

Programmatically accessing files within a zip file?

Can I access a file/folder within a zip file without extracting it to a temporary file? This is on a linux system. Right now, I just need to "read" from the file, but is it possible to "write" to it as well? Edit 1: Sorry for not clarifying, I was hoping for a command line tool that would allow it to work from any language, but as ...

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 here? Should I try togaspport the algorithm to JavaScript for server-side use? ...

PHP SoapClient get gzip wsdl

My SoapClient cant open a gzipped wsdl file directly. Feel free to take a look at the WSDL your self, I think its public (https://www.ad-juster.com/api_sandbox/api/dre-api.wsdl) I tried a bunch of settings like $client = new SoapClient("https://www.ad-juster.com/api_sandbox/api/dre-api.wsdl", array('compression' => SOAP_COMPRESSION_ACC...

gzip not work for me

hi guys, i define in my apache the settings for gzip, this is my phpinfo for gzip: zip Zip enabled Extension Version $Id: php_zip.c 293036 2010-01-03 09:23:27Z sebastian $ Zip version 1.8.11 Libzip version 0.9.0 zlib ZLib Support enabled Stream Wrapper support compress.zlib:// Stream Filter support zlib.inflate, zlib.d...

GZIP compressed web service provider

I am consuming a web service method and i want to send GZIP compressed file to service provider as request. Is it necessary that if service provider have implemented GZIP at their end then only they will receive GZIP compressed file other wise it will ignored or mis-readed at their end. What will happen if we send GZIP compressed file t...

Where to put DTD in gzipped files?

I'm adding the following: <?php ob_start( 'ob_gzhandler' ); ?> To a file to enable gzip compression. Should it go before the DTD, or between it and the <html> tag? ...

gzip or not gzip

I keep hearing that gzip your site is a good practice to speed-up delivery. My site has a very vast load in general, shall i still look into gzip? I also read about disadvantages of using gzip, such as time required to unzip contents for the browser to display. Is it true? UPDATE: This question is based on the assumption that the sit...

How large does a file need to be to benefit from gzip compression?

Since gzip takes time to pack on the server side, and more time to unpack on the client side, how large does a file need to be in order to benefit from it? Are there any real numbers out there that demonstrate the efficacy of gzip at common download speeds? ...

Decompressing gzipped files in Delphi 2009

Up until Delphi 2007 I was using DelphiZlib 0.2.99 for decompressing gzipped files. In Delphi 2009 the library does not compile anymore. Besides the conflict with Delphi's own zlib.pas unit, the code generates a number of string-related compiler errors and warnings which I don't think I can fix without a close understanding of the librar...

appengine, iphone and gzip

Hi, I have some google appengine java servlet that I access from some iphone 4 app. The servlet writes the response as XML. I have set the content type of the servlet response to "text/plain". If I fetch the servlet page using Chrome, the response is gzipped (1 Kb). But, if I fetch the servlet using my iphone app, the response is 19 Kb...

How to handle a gzip message received via IRequestChannel.Request

We are receiving a message from a WCF call as GZip data, but the code is expecting XML. I am working on a PDA that communicates with a WCF web service. The response from the service is SOAP format compressed using gzip. Because we're working in CF3.5 we're having to generate the service client proxy using the NetCFSvcUtil.exe utility p...

Are gzipped files server-side cached?

Hello! When using Gzip to compress css and js files, does the compressed css or js file remain cached in the server to be resent to other visitors or does it require another compression process for each visitor or even each page view? thanks. ...

dose python urllib2 will automaticly uncompress gzip data from fetch webpage

i'm using data=urllib2.urlopen(url).read() i want to know: how to know a url is gzipped dose urllib2 will automaticly uncompress the gzipped data if a url is gzip,so the data is always a string? ...

Optimized order of HTML attributes for compression

I read somewhere that organizing HTML attributes in a certain order can improve the rate of compression for the HTML document. (I think I read this from Google or Yahoo recommendation for faster sites). If I recall correctly, the recommendation was to put the most common attributes first (e.g. id, etc.) then put the rest in alphabetical ...

How can I tell if Heroku is sending gzipped responses?

I'm making an iPhone application that requests JSON from Heroku. Am I getting a gzipped response? And, does the iPhone automatically unzip gzipped responses, or do you have to program that in? I'm using NSURLConnection asynchronously (with the delegate protocol) as described in the Xcode docs. When I do: curl -I http://acani.heroku.c...