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

科技回声

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

GitHubTwitter

首页

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

资源链接

HackerNews API原版 HackerNewsNext.js

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

A New Perspective on MongoDB

47 点作者 meghan大约 14 年前

2 条评论

waxman大约 14 年前
I've found MongoDB to be the perfect datastore for early-stage startups (which are presumably evolving rapidly) for exactly the reasons Mike mentions:<p>- it's super <i>flexible</i> (and schema-less)<p>- dynamic queries are <i>fast</i> and powerful<p>- it's very <i>easy</i> work with<p>Scalability is another issue, <i>but</i> I think Mongo <i>can</i> scale (and that's slowly and bravely being proven by Foursquare). And almost all startups need to drastically re-architect their datastores when they hit massive scale anyways, so why not start out with the easiest and most flexible option that will let you iterate the fastest?
评论 #2387949 未加载
评论 #2387734 未加载
评论 #2388022 未加载
评论 #2387828 未加载
PaulHoule大约 14 年前
I've looked at mongodb for one particular application and it's currently uneconomic for my particular situation on Amazon EC2.<p>I've got a lot of data but a relatively light workload. One m1.large w/ mysql handles the workload easily, to fit two copies of everything in RAM with mongo I estimate I'd be paying four times as much.<p>Now, if I had more traffic, there's a crossover where mongodb is probably cheaper but the system I've got ought to scale affordably to the point where I'll have enough money for the next thing if I need it.