How to convert an existing relational database to a key-value store?

后端 未结 2 1433
情话喂你
情话喂你 2021-01-19 21:33

I am trying to map a existing relational database to a key value store. Couple of example tables are represented below.

For an instance the above \"Employee

2条回答
  •  半阙折子戏
    2021-01-19 22:04

    Nosql databases are basically aggregate stores. Relationships and its associated values are stored in a 'value' part of key - val design.

    Avoiding joins helps in better performance.

    Excellent llink on nosql modeling - https://highlyscalable.wordpress.com/2012/03/01/nosql-data-modeling-techniques/

提交回复
热议问题