英文:
Using an in-memory db with pgx and bun (Golang)
问题
我刚刚开始使用Golang的pgx和bun,现在我需要开始测试我的存储库实现。我不太清楚是否可以使用嵌入式的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.
通过集体智慧和协作来改善编程学习和解决问题的方式。致力于成为全球开发者共同参与的知识库,让每个人都能够通过互相帮助和分享经验来进步。
评论