18

私は自分のプロジェクトで使用するnodejsとmongdbを初めて使用します.db接続が機能するようになるとすぐに、コードが実際にいくつのデータベース接続を行っているかを見てショックを受けました. したがって、この単純なスニペット コードを考えると:

var express = require('express');
var mongo = require('mongodb');  
var app = express();

// Further details:
// nodejs: v0.8.18
// mongod: v2.2.2
// node's mongodb driver: v1.2.10

app.get('/', function(req, res){
    res.send('<h1>Ok</h1>');
});

var setUp = function() {   
    // get a handler to the testDB Database
    mongo.Db.connect('mongodb://localhost:27017/testDB', function(err, db) {
        if (err)
            throw err;
        // create a test collection in the database
        db.createCollection('test', function(err, test) {
            if (err)
                throw err;
            // insert a dummy document into the test collection          
            test.insert({'name':'admin', 'pass':'admin'});

            app.listen(3000); 
            console.log('App listening on port 3000');
        });
    });
}

setUp();

nodejs プロセスが起動すると、mongo デーモンは次のログを出力します。

... connection accepted from 127.0.0.1:40963 #34 (1 connection now open)
... connection accepted from 127.0.0.1:40964 #35 (2 connections now open)
... connection accepted from 127.0.0.1:40965 #36 (3 connections now open)
... connection accepted from 127.0.0.1:40966 #37 (4 connections now open)
... connection accepted from 127.0.0.1:40967 #38 (5 connections now open)
... connection accepted from 127.0.0.1:40968 #39 (6 connections now open)
... end connection 127.0.0.1:40963 (5 connections now open)
... allocating new datafile /var/data/testDB.ns, filling with zeroes...
...

そして、プロセスが終了したときのこれ:

... connection 127.0.0.1:40964 (4 connections now open)
... connection 127.0.0.1:40965 (3 connections now open)
... connection 127.0.0.1:40966 (2 connections now open)
... connection 127.0.0.1:40967 (1 connection now open)
... connection 127.0.0.1:40968 (0 connections now open)

単一の db ハンドラーを取得するために、mongo ドライバーは本当に mongod に多くの接続を確立する必要がありますか、それとも私がこれを実装した方法に何か問題がありますか? 私は本当にそこに開いている接続が1つしかないことを期待していました...

4

2 に答える 2

20

Db.connectデフォルトでは、5 つの接続のプールを開きます。単一の接続に制限したい場合は、次serverのようなオプションを使用してそれを行うことができます:

mongo.Db.connect(
    'mongodb://localhost:27017/testDB', 
    {server: {poolSize: 1}}, 
    function(err, db) { ...
于 2013-01-29T23:19:48.130 に答える