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

科技回声

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

GitHubTwitter

首页

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

资源链接

HackerNews API原版 HackerNewsNext.js

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

QueryLeaf: SQL for Mongo

23 点作者 tilt17 天前

4 条评论

ttfkam17 天前
Would much rather have &quot;Mongo&quot; for SQL like this:<p><a href="https:&#x2F;&#x2F;github.com&#x2F;microsoft&#x2F;documentdb">https:&#x2F;&#x2F;github.com&#x2F;microsoft&#x2F;documentdb</a><p>I am skeptical that SQL with Mongo backing it would be at all performant except in the most trivial cases. On the flip side, Postgres&#x27;s jsonb indexing makes the inverse very doable.
评论 #43945878 未加载
评论 #43947038 未加载
评论 #43945748 未加载
评论 #43946130 未加载
sparky_15 天前
I can appreciate the technical aspect of a translation layer, but I struggle to understand the use case for a tool like this. If your data is inherently relational, then you should be using a relational store anyway. And if it isn&#x27;t, trying to hammer it on-demand into something that looks relational is going to eat you with performance implications. Unless I&#x27;m missing something.
gavinray15 天前
It&#x27;s somewhat of a secret, but AWS&#x27;s JDBC driver for DocumentDB supports Mongo as well<p>Let&#x27;s you interact with Mongo as if it were a regular SQL JDBC database<p><a href="https:&#x2F;&#x2F;github.com&#x2F;aws&#x2F;amazon-documentdb-jdbc-driver">https:&#x2F;&#x2F;github.com&#x2F;aws&#x2F;amazon-documentdb-jdbc-driver</a>
评论 #43948116 未加载
gitroom15 天前
Honestly, putting Mongo and SQL together always confuses me a bit. I&#x27;m way more comfy with Postgres and jsonb. Anyone else feel like scaling Postgres is still kinda a pain?