forked from okiess/redis-node-http-proxy
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathredis_routing_table.js
47 lines (43 loc) · 1.56 KB
/
redis_routing_table.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
var redis = require("redis");
exports.loadRoutingTable = function(nconf, redisRoutingTable) {
console.log("Loading routing table...");
console.log("Redis Host: " + nconf.get('host'));
console.log("Redis Port: " + nconf.get('port'));
client = redis.createClient(nconf.get('port'), nconf.get('host'), { no_ready_check: true });
client.on("error", function (err) {
console.log(err);
});
client.auth(nconf.get('auth'), function(err) {
if (err) {
console.log("Redis connection failed!");
} else {
console.log("Connected to redis...");
client.select(nconf.get('dbindex'), function(err, res) {
if (!err) {
console.log("Readings hosts...");
client.llen('hosts', function(err, length) {
if (!err) {
client.lrange('hosts', 0, length, function(err, hosts) {
for (var i = 0; i < hosts.length; i++) {
getHost = function(client, host, redisRoutingTable) {
client.llen(host, function(err, hostLength) {
if (!err) {
client.lrange(host, 0, hostLength, function(err, proxyHosts) {
redisRoutingTable[host] = proxyHosts;
console.log(redisRoutingTable);
});
}
});
}
getHost(client, hosts[i], redisRoutingTable);
};
});
}
});
} else {
console.log("Error: " + err);
}
});
}
});
}