#8674 closed feature request (fixed)
Support compressed streams in the HTTP API
Reported by: | jacobsantos | Owned by: | jacobsantos |
---|---|---|---|
Milestone: | 2.8 | Priority: | normal |
Severity: | normal | Version: | |
Component: | HTTP API | Keywords: | has-patch needs-testing |
Focuses: | Cc: |
Description
Some of the transports support decompressed compressed data, while the others do not. The ticket establishes that all transports will support decompressed data that was sent over HTTP.
I think the PclZip library can be used, but it will require testing to be sure.
Attachments (2)
Change History (12)
#3
@
16 years ago
- Summary changed from Support Compressed streams in the HTTP API to Support compressed streams in the HTTP API
#6
@
16 years ago
- Keywords needs-patch added; has-patch removed
Well, after thinking about and talking to DD32, a better solution would be to use one class instead. Still needs testing though.
#7
@
16 years ago
- Keywords has-patch added; needs-patch removed
Patch needs testing. Need to see if the patch works for those having issues.
Note: See
TracTickets for help on using
tickets.
Ideally PclZip() should be avoided at all costs if there is an alternate decompression function available, Simply for the fact it does everything in PHP rather than Compiled C++, and Compression functions are better optimized in such a language.
See: http://au.php.net/manual/en/function.gzuncompress.php http://au.php.net/manual/en/function.gzdecode.php