o0111 / ruralcafe

Automatically exported from code.google.com/p/ruralcafe
0 stars 0 forks source link

Compression algorithms are redundant #26

Open GoogleCodeExporter opened 8 years ago

GoogleCodeExporter commented 8 years ago
Gzip wrapper is being used to compress and decompress between the proxies, 
bzip2 is being used to compress the compressable files in the cache. I believe 
the wiki renderer is also using bzip2, but its own library?

Original issue reported on code.google.com by shouldab...@gmail.com on 10 Oct 2010 at 8:47

GoogleCodeExporter commented 8 years ago
The file compression in the cache is going to be removed anyway (Issue 19).

Original comment by shouldab...@gmail.com on 10 Oct 2010 at 8:48

GoogleCodeExporter commented 8 years ago

GzipWrapper.cs
  -Decompress is used to unpack packages.
  -Compress is used to pack packages.
    -floating compress for single files.
  -floating read all bytes from stream.
  -ICSharpCode.SharpZipLib.BZip2.BZip2.Decompress() is used to compress/decompress html pages (waste of effort, needs to sync with CIP)

Original comment by shouldab...@gmail.com on 10 Oct 2010 at 8:50

GoogleCodeExporter commented 8 years ago
The Wiki uses Bzip2. We use Gzip for the packaging. Should we change something?

Original comment by satiaher...@gmx.de on 9 Aug 2013 at 7:43