Opened 17 years ago

Closed 17 years ago

#4946 closed (fixed)

Improvements to GZIP middleware to improve performance

Reported by: colin@… Owned by: Malcolm Tredinnick
Component: HTTP handling Version: dev
Severity: Keywords: gzip middleware performance
Cc: Triage Stage: Ready for checkin
Has patch: yes Needs documentation: no
Needs tests: no Patch needs improvement: no
Easy pickings: no UI/UX: no

Description

I've modified the gzip middleware so that it will only compress the response for HTTP status code 200 and if the response body is greater than 200 bytes long. This improves behavior when used in conjunction with E-TAGS and CommonMiddleware and avoids unnecessary work.

The patch also includes updates to the documentation for this middleware.

Attachments (1)

gzip_enhancements.patch (1.4 KB ) - added by colin@… 17 years ago.
Patch to enhance gzip middleware.

Download all attachments as: .zip

Change History (3)

by colin@…, 17 years ago

Attachment: gzip_enhancements.patch added

Patch to enhance gzip middleware.

comment:1 by Simon G. <dev@…>, 17 years ago

Triage Stage: UnreviewedReady for checkin

good idea! Although - note the typo in middleware.txt, "execute" should be "executed"

comment:2 by Malcolm Tredinnick, 17 years ago

Resolution: fixed
Status: newclosed

(In [5875]) Fixed #4946 -- Added some small improvements to Gzip middleware. Thanks, colin@….

Note: See TracTickets for help on using tickets.
Back to Top