PATH:
usr
/
local
/
lib
/
node_modules
/
knex-migrator
/
node_modules
/
mysql
/
lib
/** * PoolSelector */ var PoolSelector = module.exports = {}; PoolSelector.RR = function PoolSelectorRoundRobin() { var index = 0; return function(clusterIds) { if (index >= clusterIds.length) { index = 0; } var clusterId = clusterIds[index++]; return clusterId; }; }; PoolSelector.RANDOM = function PoolSelectorRandom() { return function(clusterIds) { return clusterIds[Math.floor(Math.random() * clusterIds.length)]; }; }; PoolSelector.ORDER = function PoolSelectorOrder() { return function(clusterIds) { return clusterIds[0]; }; };
[-] PoolConnection.js
[edit]
[-] PoolSelector.js
[edit]
[+]
..
[-] Pool.js
[edit]
[-] PoolConfig.js
[edit]
[-] ConnectionConfig.js
[edit]
[-] PoolCluster.js
[edit]
[+]
protocol
[-] PoolNamespace.js
[edit]
[-] Connection.js
[edit]