Reputation: 1
My sample data looks like below and it contains millions of customers and for each customer there is a friends list with friend name, id and favorite sports. Here which NoSQL database suits for storing this kind of data for easy access and frequent update for each customer friends list values. Cust1, {(aaa,001,cricket), (bbb,002,tennis), ............... ............... } Cust2,{(iii,011,chess), (jjj,022,cricket), ............... ............... } Cust3,{.... .... }
Thanks, Arjun
Upvotes: 0
Views: 77
Reputation: 348
Basically there are 4 types of NoSql:
Clearly your data fits on type 2 Document Databases: there are two common databases
Now the difficult part is to decided which one, because they were developed with different objectives in mind according to the CAP theorem https: //en.wikipedia.org/wiki/CAP_theorem, but here you a have a very informative post http: //blog.scottlogic.com/2014/08/04/mongodb-vs-couchdb.html
Upvotes: 1