NoSQL: Difference between revisions

From Citizendium
Jump to navigation Jump to search
imported>Charles Treatman
No edit summary
imported>Charles Treatman
No edit summary
Line 14: Line 14:
==Types of NoSQL Databases==
==Types of NoSQL Databases==
===Key-value Store===
===Key-value Store===
A key-value store maintains data as a pair consisting of a key and a value.  In general, key-value stores provide a single operation:  fetching a single value using its key.  Some key-value store implementations include mechanisms for performing a join on two distinct tables.  Examples of key-value stores include Oracle's BerkeleyDB and Amazon's Dynamo.
====BerkeleyDB====
====Dynamo====
===Column-oriented Databases===
===Column-oriented Databases===
===Document-based Stores===
===Document-based Stores===

Revision as of 08:57, 28 July 2010

All unapproved Citizendium articles may contain errors of fact, bias, grammar etc. A version of an article is unapproved unless it is marked as citable with a dedicated green template at the top of the page, as in this version of the 'Biology' article. Citable articles are intended to be of reasonably high quality. The participants in the Citizendium project make no representations about the reliability of Citizendium articles or, generally, their suitability for any purpose.

Nuvola apps kbounce green.png
Nuvola apps kbounce green.png
This article is currently being developed as part of an Eduzendium student project. The course homepage can be found at CZ:Special_Topics_2010.
To provide students with experience in collaboration, you are warmly invited to join in here, or to leave comments on the discussion page. The anticipated date of course completion is 13 August 2010. One month after that date at the latest, this notice shall be removed.
Besides, many other Citizendium articles welcome your collaboration!


This article is developing and not approved.
Main Article
Discussion
Related Articles  [?]
Bibliography  [?]
External Links  [?]
Citable Version  [?]
 
This editable Main Article is under development and subject to a disclaimer.

NoSQL refers to a number of non-relational distributed database architectures. NoSQL architectures usually store data as key-value pairs, rather than supporting relations. Some systems eliminate the guarantee of consistency (instead promising eventual consistency) in order to increase scalability. The distributed nature of NoSQL architectures makes such data stores highly scalable and fault-tolerant.

History

NoSQL vs. RDBMS

Disadvantages of NoSQL

Relationship to cloud computing

Types of NoSQL Databases

Key-value Store

A key-value store maintains data as a pair consisting of a key and a value. In general, key-value stores provide a single operation: fetching a single value using its key. Some key-value store implementations include mechanisms for performing a join on two distinct tables. Examples of key-value stores include Oracle's BerkeleyDB and Amazon's Dynamo.

BerkeleyDB

Dynamo

Column-oriented Databases

Document-based Stores

Future perspective

References