What is Key-Value Store Database?

 Posted by Rajnilari2015 on 11/28/2015 | Category: NoSql Interview questions | Views: 1447 | Points: 40
Answer:

This kind stores data in a hash table where there is a unique key and a pointer to a particular item of data.e.g.

Key			   Value

----- : ------
Id1_Name : Niladri Biswas
Id1_Citizenship : Indian

Id2_Name : Mike Curz
Id2_Citizenship : American


Since it is guarented to always have a unique key for a particular object, we can query the database for that unique key and get the results back from whichever node has the object.

Examples involve Rika,Dynamo etc.


Asked In: Many Interviews | Alert Moderator 

Comments or Responses

Login to post response