gpt4 book ai didi

node.js - 将 Knex 与自己的 pg 连接池一起使用

转载 作者:行者123 更新时间:2023-11-29 14:14:43 24 4
gpt4 key购买 nike

我想使用 knex 作为查询构建器,但我的项目已经处理了自己的连接池。

我希望我能做这样的事情:

const { Client } = require('pg')

const client = new Client()
await client.connect()

const knex = require('knex')({
client: 'pg',
connection: client,
})

有没有什么办法可以给knex提供pg客户端对象,而不是让它自己管理连接池?

最佳答案

解决方法

我认为有一种方法可以做到这一点,但它只能通过特定的查询来完成。为此,您可以使用接受连接池实例作为参数的 connection(pool) 方法。

在我的例子中,我在没有传递连接参数的情况下需要 knex,然后当连接建立时,我将连接实例保存在我的对象中。然后,当我必须使用 knex 作为客户端时,我在查询构建中传递了连接实例。

代码示例

这里是一个代码示例:

const knex = require('knex')({
client: 'pg' // postgreSQL or whatever
});

const poolConnection = await new Client().connect(); // or any other method to create your connection here

// when you have to query your db
const results = await knex('users')
.connection(poolConnection) // here pass the connection
.where({
email: 'test@tester.com'
})
.select('id', 'email', 'createdAt')
.offset(0)
.limit(1)
.first();

用例moleculer

例如,我将其与 moleculer 一起使用它提供了一个数据库适配器,它本身已经使用了一个 SQL 客户端,所以 knex 会建立一个额外的连接到我的数据库。在我的微服务中检索到连接后,我以与上述相同的方式在 knex 中使用了该连接。

"use strict";
const DbService = require("moleculer-db");
const SQLAdapter = require("moleculer-db-adapter-sequelize");
const Sequelize = require("sequelize");

// here requiring knex without an actual connection
const knex = require("knex")({
client: "pg"
});


module.exports = {
name: "users",
// implementing moleculer ORM
mixins: [DbService],
adapter: new SQLAdapter(process.env.POSTGRECONNECTIONSTRING),
model: {
name: "user",
define: {
id: {
type: Sequelize.INTEGER,
primaryKey: true,
autoIncrement: true
},
email: Sequelize.STRING,
password: Sequelize.STRING,
}
},
actions: {
findByIdRaw: {
params: {
id: "number"
},
handler(ctx) {
const { id } = ctx.params;
// use the connection pool instance
return knex("users")
.connection(this.connection)
.where({
id
})
.select("id", "email", "createdAt")
.offset(0)
.limit(1)
.first();
}
}
},
started() {
// getting the connection from the adapter
return this.adapter.db.connectionManager.getConnection()
.then((connection) => {
// saving connection
this.connection = connection;
return Promise.resolve();
});
}
};

相关文档

相关链接

关于node.js - 将 Knex 与自己的 pg 连接池一起使用,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/53042262/

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