Jump to content

Snappy: Difference between revisions

From EDM2
No edit summary
No edit summary
Line 14: Line 14:
* [https://github.com/dain/snappy Snappy in Java by Dain Sundstrom] - Another Java re-implementation, supposedly faster than Jsnappy.
* [https://github.com/dain/snappy Snappy in Java by Dain Sundstrom] - Another Java re-implementation, supposedly faster than Jsnappy.
* [https://github.com/mumez/sqnappy Squak Smalltalk bindings]
* [https://github.com/mumez/sqnappy Squak Smalltalk bindings]
* [https://github.com/decster/jnicompressions JNI bindings for LZ4 and Snappy]]
====See also====
====See also====
* [[LZ4]] - Similar C library
* [[LZ4]] - Similar C library
Line 29: Line 30:
* Dain Sundstrom (Snappy in Java)
* Dain Sundstrom (Snappy in Java)
* Masashi Umezawa (Squak port)
* Masashi Umezawa (Squak port)
* Binglin Chang (Java/JNI bindings)


[[Category:Tools]][[Category:C++]][[Category:Compression]][[Category:Software written in C++]][[Category:Open Source Software]][[Category:MS Windows Tools]][[Category:BeOS Tools]][[Category:Generic Unix Tools]][[Category:Amiga Tools]][[Category:Atari ST Tools]][[Category:C]][[Category:Haskell]][[Category:Java Tools]][[Category:ECMAScript]][[Category:PHP]][[Category:Python]][[Category:Perl]][[Category:Smalltalk]][[Category:LISP]][[Category:Ruby]][[Category:Lua]]
[[Category:Tools]][[Category:C++]][[Category:Compression]][[Category:Software written in C++]][[Category:Open Source Software]][[Category:MS Windows Tools]][[Category:BeOS Tools]][[Category:Generic Unix Tools]][[Category:Amiga Tools]][[Category:Atari ST Tools]][[Category:C]][[Category:Haskell]][[Category:Java Tools]][[Category:ECMAScript]][[Category:PHP]][[Category:Python]][[Category:Perl]][[Category:Smalltalk]][[Category:LISP]][[Category:Ruby]][[Category:Lua]]

Revision as of 20:15, 1 May 2015

A run time compression C++ class library that offers fairly moderate compression in return for high compression speeds and in particular excellent decompression speeds, the library is sometimes known by the colloquial name Zippy. Intended to be used for internal data compression in databases and similar applications rather than file compression, but in those sort of cases a low load decompression can in addition to saving space actually speed up reading and writing to and from slow peripherals such as hard drives.

Bindings and translations to other programming languages

The software comes with C bindings, but there also exists an unofficial port to C. Bindings and or ports/re-implementations are available for amongst others Haskell (Binding), Java (Binding+port), Common Lisp (Binding+port), Lua (Binding), Node.js (Binding), may be usable with other ECMAScript implementations as well, Perl (Binding), PHP (Binding), Python (Binding), Ruby (Binding) and Smalltalk (Binding).

The Snappy C++ class and the C bindings and port appear to compile fairly cleanly on OS/2 with the usual caveats about compiler and system differences and so on, however when it comes to foreign language bindings and ports you may for some of them need to do some additional work since some of the common Windows and Unix like implementations differ quite a bit from the OS/2 ones and a number of the current OS/2 implementations are getting quite old, the Java ports run like a charm though. In fact the library is written entirely in C++ with no in-line assembly and generic enough to be easily portable to most systems, although on single tasking systems like DOS they make little sense unless you are using something like TopSpeed C++ that can actually create DOS threads.

Links

See also

  • LZ4 - Similar C library
  • LZO - Similar C library although much slower.

Publications

License and status

Authors & publisher

  • Google
  • Andi Kleen (C port)
  • Robert Brown (LISP port)
  • Dain Sundstrom (Snappy in Java)
  • Masashi Umezawa (Squak port)
  • Binglin Chang (Java/JNI bindings)