https://github.com/dosco/devildb
A C++ implementation of the Google LevelDB datastore with support for column families
https://github.com/dosco/devildb
Last synced: 5 months ago
JSON representation
A C++ implementation of the Google LevelDB datastore with support for column families
- Host: GitHub
- URL: https://github.com/dosco/devildb
- Owner: dosco
- License: mit
- Created: 2014-05-01T08:11:38.000Z (about 11 years ago)
- Default Branch: master
- Last Pushed: 2014-05-15T06:05:52.000Z (about 11 years ago)
- Last Synced: 2024-12-27T20:33:44.162Z (5 months ago)
- Language: C++
- Homepage:
- Size: 176 KB
- Stars: 4
- Watchers: 3
- Forks: 4
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
devildb
=======A C++ implementation of LevelDB with support for column families. I was inspired by the BigTable paper to try and implement my own "Log Structured Merge Tree" backed DB. This is still work in progress.
* Support for Column Families
* AVL tree based implementation of MemTables
* An append only log using Protobufs for serialization
* A SSTable implementation with a Bloomfilter index, Row-key and column indexes