Skip to content

Commit 50164bc

Browse files
committed
Sanitize code
1 parent 7adf0c1 commit 50164bc

File tree

3 files changed

+527
-504
lines changed

3 files changed

+527
-504
lines changed

README.md

+3-2
Original file line numberDiff line numberDiff line change
@@ -2,9 +2,10 @@ The snappy-java is a Java port of the snappy
22
<http://code.google.com/p/snappy/>, a fast C++ compresser/decompresser developed by Google.
33

44
## Features
5-
* Fast compression/decompression tailored to 64-bit CPU architecture.
5+
* Fast compression/decompression tailored to 64-bit CPU architecture.
66
* JNI-based implementation to achieve comparable performance to the native C++ version.
7-
* Although snappy-java uses JNI, it can be used safely with multiple class loaders (e.g. Tomcat, etc.).
7+
* Although snappy-java uses JNI, it can be used safely with multiple class loaders (e.g. Tomcat, etc.).
8+
* Supporting compression/decompression of Java primitive arrays (`float[]`, `double[]`, `int[]`, `short[]`, `long[]`, etc.)
89
* 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`).
910
* Simple usage. Add the snappy-java-(version).jar file to your classpath. Then call compression/decompression methods in `org.xerial.snappy.Snappy`.
1011
* [Framing-format support](http://snappy.googlecode.com/svn/trunk/framing_format.txt) (Since 1.1.0 version)

0 commit comments

Comments
 (0)