mirror https://github.com/synrc/kvs

Maxim Sokhatsky 4d766bea29 make riak's notfound and mnesia's no_found agnostic 12 years ago
include 4d766bea29 make riak's notfound and mnesia's no_found agnostic 12 years ago
src 4d766bea29 make riak's notfound and mnesia's no_found agnostic 12 years ago
.gitignore 1630f7de88 fix typo 12 years ago
README.md be613a0a65 Update README.md 12 years ago
rebar.config e6ee5671f9 voxoz 12 years ago

README.md

KVS: Data Framework for KV Stores

Overview

This is database handling application that hides database access and provides high-level rich API to stored and extend following data:

  • Acl
  • Users
  • Groups
  • Subscriptions
  • Feeds
  • Comments
  • Meetings
  • Accounts
  • Payments
  • Products
  • Purchases

This Framework provides also a Plugin for Feed Server for sequential consistency. All write requests with given object keys will be handled by single processes in Feed Server so you may not worry about concurrent changes of user feeds.

All write operations that are made to data with secondary indexes, i.e. not like linked lists could be potentially handled without feed_server. But some KV storages are not supporting secondary indexes add those backends carefully.

Store Backends

Currently kvs includes following store backends:

  • Mnesia
  • Riak
  • CouchDB

Credits

  • Maxim Sokhatsky
  • Andrii Zadorozhnii
  • Alex Kalenuk
  • Sergey Polkovnikov

OM A HUM