Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/ony/leveldb-tl
LevelDB Template Library
https://github.com/ony/leveldb-tl
key-value leveldb
Last synced: 18 days 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 (over 10 years ago)
- Default Branch: gcc-4.9
- Last Pushed: 2019-02-10T08:26:15.000Z (almost 6 years ago)
- Last Synced: 2024-11-05T22:08:39.129Z (2 months 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 AnyDBSee 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 libraryNotes 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/ldblayerCopyright (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.