English 中文(简体)
Where can I find information about NOSQL implementation patterns?
原标题:
  • 时间:2009-12-01 04:01:48
  •  标签:
  • nosql

Just came across this article about NOSQL patterns (not mine). It s covers lots of NOSQL implementation patterns, from a developers point of view (like hashing and replication patterns).

All in all it s very useful in case anyone is asking themselves about the question:

Where can I find information about NOSQL implementation patterns?

So added a question here, please feel free to add more answers!

最佳回答

A great article about NOSQL patterns is found here:

http://horicky.blogspot.com/2009/11/nosql-patterns.html

covers

  • API model

  • Machines layout

  • Data partitioning (Consistent Hashing)

  • Data replication

  • Membership Changes

  • Client Consistency

  • Master Slave (or Single Master) Model

  • Multi-Master (or No Master) Model

  • Quorum Based 2PC

  • Vector Clock

  • State Transfer Model

  • Operation Transfer Model

  • Map Reduce Execution

  • Handling Deletes

  • Storage Implementation

问题回答




相关问题
NO-SQL reliable for small business app?

I m deciding between go for a NON-SQL engine or a regular SQL one for a document managment system for small bussines. I have experience with firebird/sql server and found a good track of reliability (...

CouchDB View, Map, Index, and Sequence

I think read somewhere that when a View is requested the "map" is only run across documents that have been added since the last time it was requested? How is this determined? I thought I saw something ...

Cassandra Vs Amazon SimpleDB

I m working on an application where data size and SQL queries are going to be heavy. I am thinking between Cassandra or Amazon SimpleDB. Can you please suggest which is more suitable in this kind of ...

representing a many-to-many relationship in couchDB

Let s say I m writing a log analysis application. The main domain object would be a LogEntry. In addition. users of the application define a LogTopic which describes what log entries they are ...

Riak on Windows

I want to play with Riak http://riak.basho.com/ or a least get it running on a Windows system. I have downloaded the source code and compiled it but that s where I get stuck, how do I start it?

MongoDB takes long for indexing

I have the following setup: Mac Pro with 2 GB of RAM (yes, not that much) MongoDB 1.1.3 64-bit 8 million entries in a single collection index for one field (integer) wanted Calling .ensureIndex(...) ...

热门标签