Google Go 数据存储界面

发布于 2024-11-07 07:04:46 字数 233 浏览 0 评论 0 原文

您对 go-pgsqlthrift4go?

我想在项目中使用 Go 和 Postgres 或 Hypertable,但我很好奇这些接口有多成熟和完整。

What are your thoughts on go-pgsql and thrift4go?

I'd like to use Go with either Postgres or Hypertable for a project, but I'm curious as to how mature and complete these interfaces are.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

遇见了你 2024-11-14 07:04:46

我对 go-psql 没有具体的经验,但由于没有答案,我会写下我的想法。

当前实现存在一些问题,这可能会困扰您(例如,低于秒的时间分辨率会被忽略。如果您更新单个字段,但您的 ORM 决定包含 time<查询中的 /code> 字段?)。

我看到的另一个问题是,不能保证这个项目会按照您的意愿维持下去。

另一种方法是构建一个到 postgres C 接口的非常简单的绑定,然后使用它。在这种情况下,抽象不是很有帮助,但绝对不会泄漏。这可能就足够了。

这就是 Russ Cox(来自核心 Go (golang) 团队)最终为 sqlite 所做的事情。 。

I don't have specific experience with go-psql, but since there's no answer I'll write my thoughts.

There are issues with the current implementation, which might bite you (e.g. time resolution lower than seconds is ignored. What happens if you update a single field, but your ORM decides to include a time field within the query?).

Other problem that I see is, there's no promise this project will be maintained as long as you wish.

Another approach is to build a very simple binding to the postgres C interface, and just use it. In that case, the abstraction is not very helpful, but definitely not leaky. And it might be enough.

That's what Russ Cox (from the core Go (golang) team) ended up doing for sqlite.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文