You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: README.md
+6-6Lines changed: 6 additions & 6 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -40,10 +40,10 @@ For LZ4 compressors, LZ4 HC compressors and decompressors, 3 implementations are
40
40
available:
41
41
- JNI bindings to the original C implementation by Yann Collet,
42
42
- a pure Java port of the compression and decompression algorithms,
43
-
- a Java port that uses the sun.misc.Unsafe API in order to achieve compression
43
+
- a Java port that uses the `sun.misc.Unsafe` API in order to achieve compression
44
44
and decompression speeds close to the C implementation.
45
45
46
-
Have a look at LZ4Factory for more information.
46
+
Have a look at [LZ4Factory](https://lz4-java.yawk.at/current/javadoc/net/jpountz/lz4/LZ4Factory) for more information.
47
47
48
48
## Compatibility notes
49
49
@@ -107,9 +107,9 @@ score of 10) hash function.
107
107
## Implementations
108
108
109
109
Similarly to LZ4, 3 implementations are available: JNI bindings, pure Java port
110
-
and pure Java port that uses sun.misc.Unsafe.
110
+
and pure Java port that uses `sun.misc.Unsafe`.
111
111
112
-
Have a look at XXHashFactory for more information.
112
+
Have a look at [XXHashFactory](https://lz4-java.yawk.at/current/javadoc/net/jpountz/xxhash/XXHashFactory) for more information.
113
113
114
114
## Compatibility notes
115
115
@@ -167,8 +167,8 @@ speed at which they compress/decompress/hash bytes.
167
167
168
168
Make sure you have a Java 7 installation in your [Maven toolchains.xml](https://maven.apache.org/guides/mini/guide-using-toolchains.html). You may also need a C compiler.
169
169
170
-
First run git submodule init and then git submodule update to initialize the lz4 submodule in src/lz4.
170
+
First run `git submodule init` and then `git submodule update` to initialize the lz4 submodule in `src/lz4`.
171
171
172
172
Then, run `./mvnw verify`.
173
173
174
-
Building a full artifact with native libraries for all supported platforms is more complex. We do this through github actions.
174
+
Building a full artifact with native libraries for all supported platforms is more complex. We do this through GitHub Actions.
0 commit comments