使用pgx和bun(Golang)与内存数据库

huangapple go评论108阅读模式
英文:

Using an in-memory db with pgx and bun (Golang)

问题

我刚刚开始使用Golang的pgxbun,现在我需要开始测试我的存储库实现。我不太清楚是否可以使用嵌入式的Postgres数据库,以及最佳选择是什么。欢迎提出任何建议。

谢谢!

英文:

I have just started using pgx and bun with Golang and I need to start testing my repository implementation. I am struggling to understand if I can use an embedded postgres db and what would be the best choice. Any suggestion is more than welcome

Thank you

答案1

得分: 2

不,PostgreSQL不能作为嵌入式数据库运行。但是,如果你给它足够的内存,它可以作为内存数据库运行。

英文:

No, PostgreSQL cannot run as an embedded database. It can run as in-memory database, however, if you give it enough memory.

huangapple
  • 本文由 发表于 2022年10月8日 01:55:19
  • 转载请务必保留本文链接:https://go.coder-hub.com/73990952.html
匿名

发表评论

匿名网友

:?: :razz: :sad: :evil: :!: :smile: :oops: :grin: :eek: :shock: :???: :cool: :lol: :mad: :twisted: :roll: :wink: :idea: :arrow: :neutral: :cry: :mrgreen:

确定