Live data from Hacker News

Ask HN: How does a RDBMS developer migrate to noSQL ?

news.ycombinator.com

1–5 of 5 posts

Ask HN: How does a RDBMS developer migrate to noSQL ?

#1
I am used to seeing data in tables and their relationship via foreign keys. I would like to move on to noSQL (key-value) store. A challenge to me is how to stop thinking about foreign keys and tables and think everything in a single key-value store. Does anyone point to guide/links how to move away from RDBMS mindset to key-value store mindset. Real life examples of moving rdbms schemas to noSQL would be great.

Re: Ask HN: How does a RDBMS developer migrate to noSQL ?

#4
I dont understand the constant desire to replace the relational model. It works great to store most types of data in it, and its very flexible to do ad hoc reports if you have a good understanding of SQL.

I ❤ ORDER BY, GROUP BY, DISTINCT, SUM(), COUNT(1) etc ducks