Aggiornamento:febbraio 2013 - il supporto del pool è stato aggiunto a node-mysql, vedere documenti
Esempio utilizzando il pool integrato:
var pool = require('mysql').createPool(opts);
pool.getConnection(function(err, conn) {
conn.query('select 1+1', function(err, res) {
conn.release();
});
});
Soluzioni precedenti al 2013:
Puoi utilizzare node-pool o mysql-pool o usa la tua semplice piscina all'italiana
function Pool(num_conns)
{
this.pool = [];
for(var i=0; i < num_conns; ++i)
this.pool.push(createConnection()); // your new Client + auth
this.last = 0;
}
Pool.prototype.get = function()
{
var cli = this.pool[this.last];
this.last++;
if (this.last == this.pool.length) // cyclic increment
this.last = 0;
return cli;
}
ora puoi sperare di avere tutte le richiamate di query da eseguire in 1 secondo:
var p = new Pool(16);
for (var i=0; i < 10; ++i)
{
p.get().query('select sleep(1)', function() { console.log('ready'); } ); // server blocks for 1 second
}