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

科技回声

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

GitHubTwitter

首页

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

资源链接

HackerNews API原版 HackerNewsNext.js

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

Ask HN: Is anyone use Cloud based SQL databases anymore?

5 点作者 RonnieOwnsLexus大约 2 年前
Almost all of greenfield projects that I see in my team are using nosql. The senior developers and architects I interact with often making a case that the simplicity of no schema and the lack of complexity in designing a relation schema. Even when the tradeoff are called out (lack of complex joins and more cost).<p>So I am curious if that is the slowly becoming the industry norm or now?<p>Is anyone using nosql databases in the cloud any more ? If yes then what for what use case ?

2 条评论

AYBABTME大约 2 年前
I&#x27;m curious what your environment is like, because my experience has been the opposite. No one that I know would recommend a nosql database in the vast majority of cases. Especially since there&#x27;s great offerings out there nowadays, and plenty of proven experience with stuff like MySQL (most often with Vitess) supporting super high loads such as Youtube, Shopify, GitHub, etc. MySQL scales for a lonnnnng time. And the same is true for Postgres, with multiple hosted offerings and also reimplementations that are PG compatible.<p>My experience is that NoSQL databases are used in last resort situations: you _need_ Cassandra, etcd, ElasticSearch for XYZ reason, as a dependency to another distributed system. But I haven&#x27;t seen anyone suggest actually using stuff like MongoDB and the likes.
评论 #35154991 未加载
1xdevloper大约 2 年前
After evaluating several SQL and NoSQL services I ended up using Planetscale for my chrome extension Autotype[1]. I have a single db with tables to store user accounts, rich text shortcuts, role based access controls etc. I use Cloudflare workers and Planetscale&#x27;s serverless library to interact with the db. The pricing is reasonable and the developer experience is great for an indie hacker like me.<p>[1] <a href="https:&#x2F;&#x2F;chrome.google.com&#x2F;webstore&#x2F;detail&#x2F;autotype-free-text-expand&#x2F;mgcgenippnenmppgfkbhcenpamhbbcna" rel="nofollow">https:&#x2F;&#x2F;chrome.google.com&#x2F;webstore&#x2F;detail&#x2F;autotype-free-text...</a>
评论 #35156754 未加载