loredb
v0.0.1-alpha.0
Published
A simple document store powered by LevelDB
Downloads
2
Readme
LoreDB
A simple document store powered by LevelDB
Status
LoreDB is in alpha preview. It is currently implemented at a conceptual level with a minimum set of features to prove out the project.
Installation
npm i loredb@latest
Introduction
LoreDB is a wrapper around LevelDB, a high performance local database. Lore adds schemas and organized querying to LevelDB, while maintaining the high speed and low disk usage of LevelDB. Lore introduces index key management by selecting which fields in your schema to use as keys into LevelDB, as well as managing auto-incrementing primary keys. You can specify the order of the keys to optimize lookups based on the most specific value your application will be searching for.
API
TODO