I am using mongo and node.js in the application. The mongo database consists of two servers.
In the example given in http://howtonode.org/express-mongodb, i can connect to one server using,
ArticleProvider = function(host, port) {
this.db= new Db('node-mongo-blog', new Server(host, port, {auto_reconnect: true}, {}));
this.db.open(function(){});
};
However, how can i connect to multiple servers, in my case there are two servers.
Can someone please let me know.
Thanks
Tuco