Friday, December 2, 2011

Integration of LZW Compression with other platforms

This post contain information how you could integrate JavaScript LZW algorithms with other platforms like Java.

I will describe what need to be done in order to successfully compress string (including international characters) and decompress it using Java.

Friday, November 4, 2011

Integration of JS Deflate Compression with other platforms

This post contain information how you could integrate JavaScript Deflate algorithms with other platforms like Java.

I will describe what need to be done in order to successfully compress string (even with non-ASCII) characters and decompress it using Java. So lets start.

Monday, October 24, 2011

JavaScript Compression libraries (compression performance test)

Current post is continuation of the JavaScript Compression libraries overview. It contain performance tests for all libraries which able to perform compression. For more details about Test condition see starting post.

Idea of this post is not to compare performance of browsers. I included results of  most fastest libraries in all major browsers to compare how they behave in different environments and to check if any library doesn't have serious performance gaps in any browsers. From results you will see that nothing really changes on different platforms.

Friday, October 21, 2011

JavaScript Compression libraries (compression ratio tests)

This post contain information how each library compressing the data. All libraries was trying to compress 5  html pages with different size. You will see how good they are.

JavaScript Compression libraries (libraries and test conditions)

Background:
I had a chance to perform investigation of JavaScript based compression. In this investigation I tried to
compare Compression, Decompression and Integration with other platforms (like Java) of all libraries I was able to find.

Current post contain libraries overview and test conditions. Next posts will contain actual result of compression, decompression and integration: