Aktualizace:únor 2013 – do node-mysql byla přidána podpora fondu, viz dokumenty
Příklad použití vestavěného fondu:
var pool = require('mysql').createPool(opts);
pool.getConnection(function(err, conn) {
conn.query('select 1+1', function(err, res) {
conn.release();
});
});
Řešení před rokem 2013:
Můžete použít node-pool nebo mysql-pool nebo použijte svůj vlastní jednoduchý kruhový bazén
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;
}
nyní můžete doufat, že zpětná volání všech dotazů budou provedena za 1 sekundu:
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
}