Skip to content

Latest commit

 

History

History
29 lines (19 loc) · 858 Bytes

README.md

File metadata and controls

29 lines (19 loc) · 858 Bytes

C++ kvdb-cpp

Orm Key Value Database

kvdb-cpp is a simple orm key value database using leveldb as db engine and reflect-cpp for providing orm support.

The following table lists the libraries in use:

Library Version License
reflect-cpp >= 0.15.0 MIT
leveldb >= 1.23 BSD-3-Clause

Supported for Types

kvdb-cpp supports the following types:

  • std::string
  • bool
  • int
  • double
  • structs / classes

Roadmap

  • Examples
  • Add cmake support
  • Docs