readium / go-toolkit

A toolkit for ebooks, audiobooks and comics written in Go
https://readium.org/web
BSD 3-Clause "New" or "Revised" License
41 stars 14 forks source link

Compressed resource optimization #93

Closed chocolatkey closed 4 months ago

chocolatkey commented 5 months ago

This enhancement allow for resources to be read in their compressed form, which usually applies to most if not all resources in any ZIP-based format (primarily EPUB). This saves CPU time because any modern web browser is capable of decompressing a deflate-encoded resource, so the raw contents of the ZIP can be directly proxied to any web client. Closes #89

HadrienGardeur commented 4 months ago

This is related to #89