Melihat kode modul, saya menemukan fungsi untuk melepaskan koneksi dari kumpulan:
pool.prototype.releaseConnection = function releaseConnection(connection) {
//Use the underlying connection from the mysql-module here:
return this.pool.releaseConnection(connection.connection);
};
Jadi jika semua fungsi ini berada dalam file yang sama, Anda dapat melakukan hal berikut di fungsi getUser:replace
conn.release();
dengan
pool.releaseConnection(conn);