sql >> データベース >  >> NoSQL >> MongoDB

node.jsmongodbmongoサーバーのレプリカセットに接続する方法

    受け入れられた答えは今ではかなり古いです。それ以来、多くの変化がありました。 接続文字列 を使用できます この形式:

    例は次のようになります:

    const { MongoClient } = require('mongodb');
    
    const connectionString = 'mongodb://mongodb0.example.com:27017,mongodb1.example.com:27017,mongodb2.example.com:27017/admin?replicaSet=myRepl';
    
    MongoClient.connect(connectionString, options).then((client) => {
        const db = client.db('node-mongo-blog');
        // do database things
    }).catch((error) => {
        // handle connection errors
    });
    


    1. Meteorで例を実行する際の問題

    2. 位置を指定してMongoDBコレクションに挿入する方法

    3. ランダムな並べ替え順序

    4. 同期を使用したAndroidおよびMongoDB上のSQLite