我正在用 Node.JS 编写一些简单的 Web 应用程序,并希望使用 mongoDB 作为主要数据存储。
Node-mongodb-native 驱动程序需要进行链式调用,然后才能真正查询或存储数据(打开数据库连接、身份验证、获取集合)。
在初始化应用程序时,在每个请求处理程序中或全局范围内进行此初始化的最佳位置在哪里?
问问题
1451 次
1 回答
2
您最好将 Mongo 初始化放在您的请求处理程序之外 - 否则它将为每个提供的页面重新连接:
var mongo = require('mongodb');
// our express (or any HTTP server)
var app = express.createServer();
// this variable will be used to hold the collection for use below
var mongoCollection = null;
// get the connection
var server = new mongo.Server('127.0.0.1', 27017, {auto_reconnect: true});
// get a handle on the database
var db = new Db('testdb', server);
db.open(function(error, databaseConnection){
databaseConnection.createCollection('testCollection', function(error, collection) {
if(!error){
mongoCollection = collection;
}
// now we have a connection - tell the express to start
app.listen(80);
});
});
app.use('/', function(req, res, next){
// here we can use the mongoCollection - it is already connected
// and will not-reconnect for each request (bad!)
})
于 2012-08-16T11:07:09.223 回答