Skip to content
voov edited this page Apr 18, 2011 · 1 revision

FlowDB a simple document oriented database engine

Storage:

  • B+Tree in C++
  • Memory only at the moment, but should stream to HDD
  • Maybe using mmap
  • Every document is stored in a JSON format

Inner workings:

  • Available as a C++ library
  • Should be made available as a daemon server running on libevent
  • Communication based on REST
  • Should support MVCC model, with an append only database
  • Needs to clean older revisions of documents
Clone this wiki locally