📁 File Manager Pro
v10.0.3 | PHP: 8.2.31
Server: LiteSpeed
2026-06-28 21:26:40
📂
/ (Root)
/
home
/
orkouolp
/
nodevenv
/
node_js
/
testing.orkobd
/
14
/
lib
/
node_modules
/
mysql
/
lib
📍 /home/orkouolp/nodevenv/node_js/testing.orkobd/14/lib/node_modules/mysql/lib
🔄 Refresh
✏️
Editing: PoolSelector.js
Writable
/** * 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]; }; };
💾 Save Changes
❌ Cancel