diff --git a/index.html b/index.html index a30e2d1..20b7731 100644 --- a/index.html +++ b/index.html @@ -32,6 +32,8 @@

Snappy is widely used inside Google, in everything from BigTable and MapReduce to our internal RPC systems. (Snappy has previously been referred to as “Zippy” in some presentations and the likes.)

+

The latest release at the time of writing is 1.1.3.

+

For more information, please see the README. Benchmarks against a few other compression libraries (zlib, LZO, LZF, FastLZ, and QuickLZ) are included in the source code distribution. The source code also contains a formal format specification, as well as a specification for a framing format useful for higher-level framing and encapsulation of Snappy data, e.g. for transporting Snappy-compressed data across HTTP in a streaming fashion. Note that the Snappy distribution currently has no code implementing the latter, but some of the ports do (see below).

Snappy is written in C++, but C bindings are included, and several bindings to other languages are maintained by third parties:

diff --git a/params.json b/params.json index c12c3c0..6622992 100644 --- a/params.json +++ b/params.json @@ -1 +1 @@ -{"name":"Snappy","tagline":"A fast compressor/decompressor","body":"Snappy is a compression/decompression library. It does not aim for maximum compression, or compatibility with any other compression library; instead, it aims for very high speeds and reasonable compression. For instance, compared to the fastest mode of zlib, Snappy is an order of magnitude faster for most inputs, but the resulting compressed files are anywhere from 20% to 100% bigger. On a single core of a Core i7 processor in 64-bit mode, Snappy compresses at about 250 MB/sec or more and decompresses at about 500 MB/sec or more.\r\n\r\nSnappy is widely used inside Google, in everything from BigTable and MapReduce to our internal RPC systems. (Snappy has previously been referred to as “Zippy” in some presentations and the likes.)\r\n\r\nFor more information, please see the [README][readme]. Benchmarks against a few other compression libraries (zlib, LZO, LZF, FastLZ, and QuickLZ) are included in the source code distribution. The source code also contains a [formal format specification][format-desc], as well as a specification for a [framing format][framing-format] useful for higher-level framing and encapsulation of Snappy data, e.g. for transporting Snappy-compressed data across HTTP in a streaming fashion. Note that the Snappy distribution currently has no code implementing the latter, but some of the ports do (see below).\r\n\r\nSnappy is written in C++, but C bindings are included, and several bindings to other languages are maintained by third parties:\r\n\r\n* C#: [Snappy for .NET][snappy4net] (P/Invoke wrapper), [Snappy.NET][snappynet] (P/Invoke wrapper), [Snappy.Sharp][snappysharp] (native reimplementation)\r\n* [C port][snappy-c]\r\n* [C++ MSVC packaging][msvc] (plus Windows binaries, NuGet packages and command-line tool)\r\n* Common Lisp: [Library bindings][thnappy], [native reimplementation][clnative]\r\n* Erlang: [esnappy][esnappy], [snappy-erlang-nif][snappyerlangnif]\r\n* [Go][snappy-go]\r\n* [Haskell][snappyhaskell]\r\n* [Haxe][hxsnappy] (C++/Neko)\r\n* Java: [JNI wrapper][snappy-java] (including the framing format), [native reimplementation][jsnappy], [other native reimplementation][dain-snappy] (including the framing format)\r\n* [Lua][lua-snappy]\r\n* [Node.js][node-snappy] (including the [framing format][node-snappy-stream])\r\n* [Perl][perl-compress-snappy]\r\n* [PHP][php-snappy]\r\n* [Python][python-snappy] (including a command-line tool for the framing format)\r\n* [R][r-snappy]\r\n* [Ruby][ruby-snappy]\r\n* [Smalltalk][sqnappy] (including the framing format)\r\n\r\nSnappy is used or is available as an alternative in software such as\r\n\r\n* [Cassandra][cassandra]\r\n* [Couchbase][couchbase]\r\n* [Hadoop][hadoop]\r\n* [LessFS][lessfs]\r\n* [LevelDB][leveldb] (which is in turn used by [Google Chrome][google-chrome])\r\n* [Lucene][lucene]\r\n* [VoltDB][voltdb]\r\n\r\nIf you know of more, do not hesitate to let us know. The easiest way to get in touch is via the [Snappy discussion mailing list][mailinglist].\r\n\r\n[readme]: https://github.com/google/snappy/blob/master/README\r\n[format-desc]: https://github.com/google/snappy/blob/master/format_description.txt\r\n[framing-format]: https://github.com/google/snappy/blob/master/framing_format.txt\r\n\r\n[snappy4net]: http://snappy4net.codeplex.com/\r\n[snappynet]: http://snappy.angeloflogic.com/\r\n[snappysharp]: https://github.com/jeffesp/Snappy.Sharp\r\n[snappy-c]: http://github.com/andikleen/snappy-c\r\n[msvc]: http://snappy.angeloflogic.com/\r\n[thnappy]: http://flambard.github.com/thnappy/\r\n[clnative]: https://github.com/brown/snappy\r\n[esnappy]: https://github.com/thekvs/esnappy\r\n[snappyerlangnif]: https://github.com/fdmanana/snappy-erlang-nif\r\n[snappy-go]: http://code.google.com/p/snappy-go/\r\n[snappyhaskell]: http://hackage.haskell.org/package/snappy\r\n[hxsnappy]: https://github.com/MaddinXx/hxsnappy\r\n[snappy-java]: https://github.com/xerial/snappy-java\r\n[jsnappy]: http://code.google.com/p/jsnappy/\r\n[dain-snappy]: https://github.com/dain/snappy\r\n[lua-snappy]: https://github.com/forhappy/lua-snappy\r\n[node-snappy]: https://github.com/kesla/node-snappy\r\n[node-snappy-stream]: https://github.com/kesla/node-snappy-stream\r\n[perl-compress-snappy]: http://search.cpan.org/dist/Compress-Snappy/\r\n[php-snappy]: http://code.google.com/p/php-snappy/\r\n[python-snappy]: http://pypi.python.org/pypi/python-snappy\r\n[r-snappy]: https://github.com/lulyon/R-snappy\r\n[ruby-snappy]: https://github.com/miyucy/snappy\r\n[sqnappy]: https://github.com/mumez/sqnappy\r\n\r\n[cassandra]: http://cassandra.apache.org/\r\n[couchbase]: http://www.couchbase.com/\r\n[hadoop]: http://hadoop.apache.org/\r\n[lessfs]: http://www.lessfs.com/wordpress/\r\n[leveldb]: http://code.google.com/p/leveldb/\r\n[google-chrome]: http://chrome.google.com/\r\n[lucene]: http://lucene.apache.org/\r\n[voltdb]: http://voltdb.com/\r\n\r\n[mailinglist]: http://groups.google.com/group/snappy-compression","google":"UA-22654799-1","note":"Don't delete this file! It's used internally to help with page regeneration."} \ No newline at end of file +{"name":"Snappy","tagline":"A fast compressor/decompressor","body":"Snappy is a compression/decompression library. It does not aim for maximum compression, or compatibility with any other compression library; instead, it aims for very high speeds and reasonable compression. For instance, compared to the fastest mode of zlib, Snappy is an order of magnitude faster for most inputs, but the resulting compressed files are anywhere from 20% to 100% bigger. On a single core of a Core i7 processor in 64-bit mode, Snappy compresses at about 250 MB/sec or more and decompresses at about 500 MB/sec or more.\r\n\r\nSnappy is widely used inside Google, in everything from BigTable and MapReduce to our internal RPC systems. (Snappy has previously been referred to as “Zippy” in some presentations and the likes.)\r\n\r\nThe latest release at the time of writing is [1.1.3][1.1.3].\r\n\r\nFor more information, please see the [README][readme]. Benchmarks against a few other compression libraries (zlib, LZO, LZF, FastLZ, and QuickLZ) are included in the source code distribution. The source code also contains a [formal format specification][format-desc], as well as a specification for a [framing format][framing-format] useful for higher-level framing and encapsulation of Snappy data, e.g. for transporting Snappy-compressed data across HTTP in a streaming fashion. Note that the Snappy distribution currently has no code implementing the latter, but some of the ports do (see below).\r\n\r\nSnappy is written in C++, but C bindings are included, and several bindings to other languages are maintained by third parties:\r\n\r\n* C#: [Snappy for .NET][snappy4net] (P/Invoke wrapper), [Snappy.NET][snappynet] (P/Invoke wrapper), [Snappy.Sharp][snappysharp] (native reimplementation)\r\n* [C port][snappy-c]\r\n* [C++ MSVC packaging][msvc] (plus Windows binaries, NuGet packages and command-line tool)\r\n* Common Lisp: [Library bindings][thnappy], [native reimplementation][clnative]\r\n* Erlang: [esnappy][esnappy], [snappy-erlang-nif][snappyerlangnif]\r\n* [Go][snappy-go]\r\n* [Haskell][snappyhaskell]\r\n* [Haxe][hxsnappy] (C++/Neko)\r\n* Java: [JNI wrapper][snappy-java] (including the framing format), [native reimplementation][jsnappy], [other native reimplementation][dain-snappy] (including the framing format)\r\n* [Lua][lua-snappy]\r\n* [Node.js][node-snappy] (including the [framing format][node-snappy-stream])\r\n* [Perl][perl-compress-snappy]\r\n* [PHP][php-snappy]\r\n* [Python][python-snappy] (including a command-line tool for the framing format)\r\n* [R][r-snappy]\r\n* [Ruby][ruby-snappy]\r\n* [Smalltalk][sqnappy] (including the framing format)\r\n\r\nSnappy is used or is available as an alternative in software such as\r\n\r\n* [Cassandra][cassandra]\r\n* [Couchbase][couchbase]\r\n* [Hadoop][hadoop]\r\n* [LessFS][lessfs]\r\n* [LevelDB][leveldb] (which is in turn used by [Google Chrome][google-chrome])\r\n* [Lucene][lucene]\r\n* [VoltDB][voltdb]\r\n\r\nIf you know of more, do not hesitate to let us know. The easiest way to get in touch is via the [Snappy discussion mailing list][mailinglist].\r\n\r\n[1.1.3]: https://github.com/google/snappy/releases/download/1.1.3/snappy-1.1.3.tar.gz\r\n\r\n[readme]: https://github.com/google/snappy/blob/master/README\r\n[format-desc]: https://github.com/google/snappy/blob/master/format_description.txt\r\n[framing-format]: https://github.com/google/snappy/blob/master/framing_format.txt\r\n\r\n[snappy4net]: http://snappy4net.codeplex.com/\r\n[snappynet]: http://snappy.angeloflogic.com/\r\n[snappysharp]: https://github.com/jeffesp/Snappy.Sharp\r\n[snappy-c]: http://github.com/andikleen/snappy-c\r\n[msvc]: http://snappy.angeloflogic.com/\r\n[thnappy]: http://flambard.github.com/thnappy/\r\n[clnative]: https://github.com/brown/snappy\r\n[esnappy]: https://github.com/thekvs/esnappy\r\n[snappyerlangnif]: https://github.com/fdmanana/snappy-erlang-nif\r\n[snappy-go]: http://code.google.com/p/snappy-go/\r\n[snappyhaskell]: http://hackage.haskell.org/package/snappy\r\n[hxsnappy]: https://github.com/MaddinXx/hxsnappy\r\n[snappy-java]: https://github.com/xerial/snappy-java\r\n[jsnappy]: http://code.google.com/p/jsnappy/\r\n[dain-snappy]: https://github.com/dain/snappy\r\n[lua-snappy]: https://github.com/forhappy/lua-snappy\r\n[node-snappy]: https://github.com/kesla/node-snappy\r\n[node-snappy-stream]: https://github.com/kesla/node-snappy-stream\r\n[perl-compress-snappy]: http://search.cpan.org/dist/Compress-Snappy/\r\n[php-snappy]: http://code.google.com/p/php-snappy/\r\n[python-snappy]: http://pypi.python.org/pypi/python-snappy\r\n[r-snappy]: https://github.com/lulyon/R-snappy\r\n[ruby-snappy]: https://github.com/miyucy/snappy\r\n[sqnappy]: https://github.com/mumez/sqnappy\r\n\r\n[cassandra]: http://cassandra.apache.org/\r\n[couchbase]: http://www.couchbase.com/\r\n[hadoop]: http://hadoop.apache.org/\r\n[lessfs]: http://www.lessfs.com/wordpress/\r\n[leveldb]: http://code.google.com/p/leveldb/\r\n[google-chrome]: http://chrome.google.com/\r\n[lucene]: http://lucene.apache.org/\r\n[voltdb]: http://voltdb.com/\r\n\r\n[mailinglist]: http://groups.google.com/group/snappy-compression","google":"UA-22654799-1","note":"Don't delete this file! It's used internally to help with page regeneration."} \ No newline at end of file