I've heard about highly scalable key-value databases, like Amazon DynamoDB and Kyoto Cabinet.

But I can't see an use for everyday problems.

Ex.: Suppose I have a "post object", which has an id, a title, a content and some tags, and I want to query the database to find all posts with some particular tag. How can I do it with a key-value database?

link|improve this question

For everyday problems, a traditional SQL database is often appropriate. The key-value databases are valuable for unusual problems, like handling hundreds of millions of users, or tens of thousands of requests per second. – DNA Feb 4 at 11:21
feedback

1 Answer

up vote 2 down vote accepted

Key value stores are extremely fast (typically in memory) and provide eventual consistency. Many of the standard database features such as ACID may not exist but at the same time none of the limitations such as too many writes etc., also exist.

The idea is to think outside of the traditional key-value store as you would do in a hashtable and instead look at this form of storage as a de-normalized form of storage that is designed based on the queries you want to fire at it.

In your specific question I would use the tags as keys and the post-id as values. Then bingo...

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.