【发布时间】:2016-04-06 02:48:42
【问题描述】:
我想知道如何在 MEAN 堆栈应用程序中使用与数据库的连接。特别是,我应该何时创建与数据库的连接以及何时应销毁与数据库的连接。我应该在每个新的 HTTP 请求上创建和销毁连接,还是应该存储一次创建的连接并尽可能长时间地将其用于任何后续请求。我使用 Mongoose 作为建模工具。
这是一个例子。
这是我的routes.js 文件,路径为/index。对该路由的请求应该从 MongoDb 数据库中获取一些日期。我现在如何连接和断开数据库让我很困扰。是的,我完全按照 Mongoose 文档中的说明连接和断开数据库,但这是在严肃的生产环境中执行此操作的正确方法吗?
var express = require('express');
var router = express.Router();
var config = require('./db-config');
// I create a Mongoose instance as a module object,
// as opposite to create it in every request handler function below.
var mongoose = require('mongoose');
var productSchema = require('../db/productSchema'); // model schema is also a module-wide object
// And here is a request handler function.
// It is called on every request as a brand new.
// I create and destroy a database connection inside this request handler
router.get('/index', function(req, res, next) {
// I connect to a database on every request.
// Do I need to do it here in a request handler?
// May I do it outside of this request handler on a module-wide level?
mongoose.connect('mongodb://my_database');
// I create a new connection here in a request handler.
// So it lives only during this request handler run.
// Is this the right way? May I do it outside of this request handler
// on a module-wide level and somehow keep this connection and use it
// in every subsequent requests to this or any other route in the app?
var db = mongoose.connection;
db.on('connecting', function() {
console.log('connecting');
});
db.on('connected', function() {
console.log('connected');
});
db.on('open', function() {
console.log('open');
});
db.on('error', console.error.bind(console, 'connection error'));
db.once('open', function(cb) {
var Product = mongoose.model('Product', productSchema);
Product.find({category: "books"}, function(err, prods) {
if (err) return console.error(err);
// I close a connection here in a callback.
// As soon as successfully fetched the data.
// Do I need to close it after every request?
// What is the right place and time to do it?
db.close(disconnect);
res.json(prods);
});
});
})
找到了一些好的答案:
What are best practices on managing database connections in .NET?
【问题讨论】:
标签: node.js mongodb express mongoose database