|
25 | 25 | **LmdbJava** adds Java-specific features to LMDB:
|
26 | 26 |
|
27 | 27 | * [Extremely fast](https://github.com/lmdbjava/benchmarks/blob/master/results/20160710/README.md) across a broad range of benchmarks, data sizes and access patterns
|
28 |
| -* Modern, idiomatic Java API (including iterators, enums, exceptions etc) |
29 |
| -* Nothing to install (the JAR embeds LMDB libraries for Linux, OS X and Windows) |
| 28 | +* Modern, idiomatic Java API (including iterators, key ranges, enums, exceptions etc) |
| 29 | +* Nothing to install (the JAR embeds the latest LMDB libraries for Linux, OS X and Windows) |
30 | 30 | * Buffer agnostic (Java `ByteBuffer`, Agrona `DirectBuffer`, Netty `ByteBuf`, your own buffer)
|
31 | 31 | * 100% stock-standard, officially-released, widely-tested LMDB C code ([no extra](https://github.com/lmdbjava/native) C/JNI code)
|
32 | 32 | * Low latency design (allocation-free; buffer pools; optional checks can be easily disabled in production etc)
|
| 33 | +* Automatically tested with Java 8 and Java 11 |
33 | 34 | * Easy to use (just work through our step-by-step, CI-tested, fully-executable [tutorial](https://github.com/lmdbjava/lmdbjava/tree/master/src/test/java/org/lmdbjava/TutorialTest.java))
|
34 |
| -* Tested with Java 8 through to Java 11 |
| 35 | +* Community questions and contributions are welcome through [GitHub tickets](https://github.com/lmdbjava/lmdbjava/issues) |
| 36 | +* Mature code (commenced in 2016) and used for heavy production workloads (eg > 500 TB of HFT data) |
| 37 | +* Actively maintained and with a "Zero Bug Policy" before every release (see [issues](https://github.com/lmdbjava/lmdbjava/issues)) |
35 | 38 | * Available from [Maven Central](http://search.maven.org/#search%7Cga%7C1%7Cg%3A%22org.lmdbjava%22%20AND%20a%3A%22lmdbjava%22) and [OSS Sonatype Snapshots](https://oss.sonatype.org/content/repositories/snapshots/org/lmdbjava/lmdbjava) (see [Change Log](https://github.com/lmdbjava/lmdbjava/wiki/Change-Log))
|
36 | 39 | * Comprehensive [JavaDocs](http://www.javadoc.io/doc/org.lmdbjava/lmdbjava)
|
37 | 40 | * [Linux](https://travis-ci.org/lmdbjava/lmdbjava), [OS X](https://travis-ci.org/lmdbjava/lmdbjava) and [Windows](https://ci.appveyor.com/project/benalexau/lmdbjava) CI
|
|
0 commit comments