NoSQL

From TedYunWiki
Revision as of 18:14, 17 November 2013 by Tedyun (talk | contribs)
Jump to navigation Jump to search

Key-Value Stores

  • Interface: extremely simple
    1. Data model: (key, value) pairs
    2. Operations: Insert(key, value), Fetch(key), Update(key), Delete(key)
    3. Some allow (non-uniform) columns within value.
    4. Some allow Fetch on range of keys.
  • Implementation: efficiency, scalability, fault-tolerance
    • Records distributed to nodes based on key
    • Replication
    • Single-record transactions, "eventual consistency".