This commit is contained in:
Taro L. Saito 2013-11-08 00:20:29 +09:00
parent 30e054037c
commit 9a5610fcf1
2 changed files with 4 additions and 0 deletions

View File

@ -7,6 +7,9 @@ Since vesion 1.1.0.x, Java 6 (1.6) or higher is required.
## snappy-java-1.1.1
* Upgrade native snappy version
## snappy-java-1.1.0.1 (8 November 2013)
* Add SunOS/x86_64 support
## snappy-java-1.1.0 (17 October 2013)
* Add Snappy framed format support (SnappyFramedInputStream, SnappyFramedOutputStream)
* Add SunOS support

View File

@ -8,6 +8,7 @@ The snappy-java is a Java port of the snappy
* Portable across various operating systems; Snappy-java contains native libraries built for Window/Mac/Linux (64-bit). snappy-java loads one of these libraries according to your machine environment (It looks system properties, `os.name` and `os.arch`).
* Simple usage. Add the snappy-java-(version).jar file to your classpath. Then call compression/decompression methods in `org.xerial.snappy.Snappy`.
* [Framing-format support](http://snappy.googlecode.com/svn/trunk/framing_format.txt) (Since 1.1.0 version)
* OSGi support
* [Apache License Version 2.0](http://www.apache.org/licenses/LICENSE-2.0). Free for both commercial and non-commercial use.
## Performance