LMDB (Lightning Memory-Mapped Database) is an embedded transactional database in the form of a key-value store.
This package embeds & provides React Native bindings for LMDB.
NOTE: Under development, not ready for consumption yet!
npm install react-native-lmdb
cd ios && pod install
import { open } from 'react-native-lmdb';
// Define the largest size of the db (100mb in this case)
const mapSize = 1024 * 1024 * 100;
const { put, get, del } = open('mydb.mdb', mapSize);
put('key1', 'value1');
put('key2', 'value2');
console.log(get('key1'));
console.log(get('key2'));
del('key1');
del('key2');
LMDB uses transactions for read/write ops. Batch ops should use a shared transaction to improve perf.
Write lots of data in a single transaction:
const tidx = beginTransaction(true);
put('some', 'data', tidx);
put('other', 'data', tidx);
// ...
writeTransaction(tidx); // write the data to the db
For reading data, you can use a global read transaction, then reset it to sync with the db.
// Make this global, and adjust all get() calls to use this transaction
const tidx = beginTransaction();
const value1 = get('key1', tidx);
const value2 = get('key2', tidx);
// Elsewhere in your app, after making changes to your db...
put('key1', 'new data');
resetTransaction(tidx); // this allow subsequent get() calls to use the latest db snapshot
const value1New = get('key1', tidx);
MMKV is a great tool but isn't designed for vast amounts of data.
SQLite can handle vast amounts of data but is async thus increases complexity and introduces possible race conditions.
LMDB is mature, synchronous, and can handle anything you throw at it. 💪
- Simple API
- Performance over features
I am still in the process of profiling and optimising.
- Thanks to sysmas for open sourcing lmdb.
If you find LMDB useful please consider supporting the OpenLDAP foundation: https://www.openldap.org/foundation/
See the contributing guide to learn how to contribute to the repository and the development workflow.
MIT
Made with create-react-native-library