Top "Gzip" questions

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

GZip response on IIS Express

I want to compress responses coming from my IIS Express driven web application. We're using IIS Express as local development …

asp.net gzip iis-express
Serving gzipped content directly — bad thing to do?

I have my website configured to serve static content using gzip compression, like so: <link rel='stylesheet' href='http://…

gzip static-content
Python3 write gzip file - memoryview: a bytes-like object is required, not 'str'

I want to write a file. Based on the name of the file this may or may not be compressed …

python gzip typeerror python-3.5
Python 3: gzip.open() and modes

https://docs.python.org/3/library/gzip.html I am considering to use gzip.open(), and I am a little confused …

python python-3.x gzip mode
GZIPInputStream throws unknown format (magic number 213c)

While I used GZIPInputStream to compress bytes get from Internet, the program run error as follows: 05-08 17:37:02.465: W/System.err(744): …

android gzip httpconnection gzipinputstream
Python - How to gzip a large text file without MemoryError?

I use the following simple Python script to compress a large text file (say, 10GB) on an EC2 m3.large …

python out-of-memory gzip large-files
AFNetworking Enable GZIP

I am looking on the AFNetworking site that GZIP compression is supported " Gzip decompression from server responses is already built …

ios objective-c gzip nsurlconnection afnetworking
Web API Gzip not being applied

I have added the web.config entry to enable gzip compression based on this S/O answer Enable IIS7 gzip. …

c# gzip asp.net-web-api2
Why does my C# gzip produce a larger file than Fiddler or PHP?

If I GZip this text: Hello World through C# using this code: Stream stream = new MemoryStream(Encoding.Default.GetBytes("Hello …

c# gzip fiddler gzipstream
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_…

c# gzip webrequest gzipstream