gpt4 book ai didi

postgresql - Vapor 中的多个数据库

转载 作者:行者123 更新时间:2023-12-05 01:09:16 26 4
gpt4 key购买 nike

对于我的 Vapor 项目,我想主要使用一个 Postgres 数据库。但是,对于某些长时间运行的请求,我想使用同一数据库的单独只读克隆。

这方面的文档非常少。如何在现有默认数据库旁边添加另一个数据库连接?

static func configureDatabase(_ app: Application) throws {
try app.databases.use(.postgres(url: "postgresql://user@localhost:5432/user"), as: .psql)
}

运行查询时,我如何告诉 Fluent 在第二个数据库上运行这些查询?

最佳答案

多个数据库的魔力在于 DatabaseID。您可以定义一个新的 DatabaseID 实例,并用它注册一个连接。

extension DatabaseID {
static let readOnly = DatabaseID("readOnly")
}

static func configureDatabase(_ app: Application) throws {
try app.databases.use(.postgres(url: "postgresql://user@localhost:5432/user"), as: .psql)
try app.databases.use(.postgres(url: "postgresql://user@localhost:5432/read_only"), as: .readOnly)
}

然后,当您想运行查询时,不要使用 request.db 数据库,而是使用 .db(_:) 方法并传入您的标识符:

User.query(on: request.db(.readOnly))

关于postgresql - Vapor 中的多个数据库,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/65386033/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com