node.js中mysql连接池的使用方法?
直接用 mysql 模块的 createPool 接口即可const pool = mysql.createPool({
connectionLimit : 10,
host : 'example.org',
user : 'bob',
password : 'secret',
database : 'my_db'
});如果要连接多个从库的话,可以用 PoolCluster ,具体参见: https://github.com/mysqljs/mysql#poolcluster
赞0
踩0