https://github.com/ony/leveldb-tl
LevelDB Template Library
https://github.com/ony/leveldb-tl
key-value leveldb
Last synced: about 1 year ago
JSON representation
LevelDB Template Library
- Host: GitHub
- URL: https://github.com/ony/leveldb-tl
- Owner: ony
- License: lgpl-2.1
- Created: 2014-04-12T22:36:34.000Z (about 12 years ago)
- Default Branch: gcc-4.9
- Last Pushed: 2019-02-10T08:26:15.000Z (over 7 years ago)
- Last Synced: 2025-02-15T17:39:58.929Z (over 1 year ago)
- Topics: key-value, leveldb
- Language: C++
- Size: 151 KB
- Stars: 0
- Watchers: 2
- Forks: 1
- Open Issues: 7
-
Metadata Files:
- Readme: README.md
- License: LICENSE.md
Awesome Lists containing this project
README
LevelDB Template Library
========================
This project is intended for using in programs like browsers, small dbms like
http://github.com/openwebos/db8 .
Features
--------
- abstract AnyDB
- in-memory AnyDB
- transactions layer
- sandwich layer (multiple AnyDB in one)
- reference layer to embed ref. to existing AnyDB
See tests/simple.cpp for samples of usage
Goals to stick with
-------------------
- extreme fusion between layers to give a chance for compiler optimizer
- minimize using of ref/ptr that leads outside of this library
Notes for development
---------------------
- tests should be run under valgrind also unless built with libasan (sanitizer
from gcc 4.8)
Credits
-------
Inspired by https://github.com/feniksa/ldblayer
Copyright (C) 2014 Nikolay Orliuk
All parts are subject for LGPL-2.1 license shipped with this sources.
Act of distributing any derived work from this project as a whole or as its
parts fall under terms of LGPL-2.1 and subject for spreading open source.
Software that uses this library is out of scope of this license.