モジュールのコードを見ると、プールから接続を解放するための関数が見つかりました:
pool.prototype.releaseConnection = function releaseConnection(connection) {
//Use the underlying connection from the mysql-module here:
return this.pool.releaseConnection(connection.connection);
};
したがって、これらの関数がすべて同じファイルにある場合は、getUser関数で次のように実行できます:replace
conn.release();
と
pool.releaseConnection(conn);