This articles was originally at wiki.asp.net but has now been given a new home on CodeProject. Editing rights for this article has been set at Bronze or above, so please go in and edit and update this article to keep it fresh and relevant.
Working with NoSQL Databases
How to get started with NoSQL?
Since 2009, NoSQL databases becomes more and more popular. But why?
- No usage of SQL, that means
- Less complexity
- Better portability
- Boundlessness
- User-friendliness
- Most databases are Open-Source
- Performance
- Scalability
Famous companies like Twitter, Facebook and Amazon are using NoSQL databases.
What sorts of NoSQL databases are used today?
- Key-Value stores
- Easy to implement
- Only key-value-pairs can be stored
- Difficult to build complex data structures
- Column stores
- Columns don't have to be defined in advance.
- A row can have different numbers of cells
- Document stores
- Like key-value stores, but allows nested values
- Graph databases
- Objects and relationships are modelled and persisted as nodes and edges of a graph
What NoSQL databases are present today?
- Cassandra
- Data Model: Columnfamily
- Query API: Thrift
- CouchDB
- Data Model: Document
- Query API: map/reduce views
- HBase
- Data Model: Columnfamily
- Query API: Thrift, REST
- MongoDB
- Data Model: Document
- Query API: Cursor
- Neo4j
- Data Model: Graph
- Query API: Graph
- Redis
- Data Model: Collection
- Query API: Collection
- Riak
- Data Model: Document
- Query API: Nested hashes
- Scalaris
- Data Model: Key/value
- Query API: get/put
- Tokyo Cabinet
- Data Model: Key/value
- Query API: get/put
- Voldemort
- Data Model: Key/value
- Query API: get/put
.NET APIs
Cassandra
CouchDB
MongoDB
Tokyo Cabinet
Further Reading
A good introduction to the concepts of NoSQL is the paper "NoSQL Databases" from Christof Strauch.
Also read the "Scalable SQL and NoSQL Data Stores" from Rick Cattell.
This article has no explicit license attached to it but may contain usage terms in the article text or the download files themselves. If in doubt please contact the author via the discussion board below.
A list of licenses authors might use can be found here