我有mongodb(mongoose)的nodejs应用程序。像这样:
var mongoose = require('mongoose');
var express = require('express');
mongoose.connect('mongodb://localhost/my_database');
.....
var DocumentSchema = new Schema({
title : String
, body : String
, date : Date
});
var Document = mongoose.model('Document', DocumentSchema);
app.get('/documents', function(req, res) {
// get all docs
Document.find({}, function(err, docs) {
docs = docs.map(function(d) {
return {title: d.title, id: d._id};
});
res.render('documents/index.jade', {documents: docs});
});
});
所以所有用户都使用单个MongoDB连接。我应该在每次请求后关闭连接吗?
答案 0 :(得分:1)
不,你永远不应该关闭连接并再次重新打开它,保持打开状态,除非你希望你的进程消耗更多的cpu / RAM。