Path: blob/master/node_modules/@adiwajshing/keyed-db/README.md
1126 views
Keyed DB
A light-weight node library to manage a sorted & indexed collection with pagination support. All done using Binary Search. Based off my swift code for Queenfisher
Install
npm i github:adiwajshing/keyed-db
Running Tests
npm test
Functions
Usage
Time Complexity
Operation | Time Complexity |
---|---|
db.insert() | O(logN) |
db.delete() | O(logN) |
db.get() | O(1) |
db.updateKey() | O(logN) |