blob: 720a3ffaedf75d925a2a902a22d7dc95df3b2b6f [file] [log] [blame]
<!--
Licensed to the Apache Software Foundation (ASF) under one or more
contributor license agreements. See the NOTICE file distributed with
this work for additional information regarding copyright ownership.
The ASF licenses this file to You under the Apache License, Version 2.0
(the "License"); you may not use this file except in compliance with
the License. You may obtain a copy of the License at
http://www.apache.org/licenses/LICENSE-2.0
Unless required by applicable law or agreed to in writing, software
distributed under the License is distributed on an "AS IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
See the License for the specific language governing permissions and
limitations under the License.
-->
<html>
<body>
<h2>LevelDB EntityStore.</h2>
<blockquote>
LevelDB is a fast key-value storage library written at Google that provides an ordered mapping from string
keys to string values.
</blockquote>
<p>
By default use the native implementation through JNI bindings and fallback to the pure java implementation
if not available on the current platform. Used implementation can be forced using the
{@link org.qi4j.entitystore.leveldb.LevelDBEntityStoreConfiguration#flavour()} property.
</p>
<p>See:</p>
<ul>
<li>LevelDB <a href="https://code.google.com/p/leveldb/">https://code.google.com/p/leveldb/</a></li>
<li>JNI bindings <a href="https://github.com/fusesource/leveldbjni">https://github.com/fusesource/leveldbjni</a></li>
<li>Pure Java implementation <a href="https://github.com/dain/leveldb">https://github.com/dain/leveldb</a></li>
</ul>
</body>
</html>