TE
科技回声
首页24小时热榜最新最佳问答展示工作
GitHubTwitter
首页

科技回声

基于 Next.js 构建的科技新闻平台,提供全球科技新闻和讨论内容。

GitHubTwitter

首页

首页最新最佳问答展示工作

资源链接

HackerNews API原版 HackerNewsNext.js

© 2025 科技回声. 版权所有。

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

6 点作者 jamram82将近 15 年前
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.

4 条评论

suxargs将近 15 年前
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.<p>I &#38;#10084; ORDER BY, GROUP BY, DISTINCT, SUM(), COUNT(1) etc <i>ducks</i>
gspyrou将近 15 年前
You may check this presentation from MIX10 "Using Storage in the Windows Azure Platform" <a href="http://live.visitmix.com/MIX10/Sessions/EX11" rel="nofollow">http://live.visitmix.com/MIX10/Sessions/EX11</a>
djb_hackernews将近 15 年前
You know that table where you just have an id and a blob or text field? Start with that.
Devilboy将近 15 年前
Why do you want to move to a KV store? Don't just move for the sake of it. If you have a real problem that requires a KV store then sure, but it sounds like you're just doing it cause everyone else is. Don't optimise for a problem you don't have (yet).