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

nodejs-mongodbネイティブはすべてのドキュメントを検索します

    最も簡単な方法は、Cursorを使用することです。 (参照 ):

    var cursor = db.collection('test').find();
    
    // Execute the each command, triggers for each document
    cursor.each(function(err, item) {
        // If the item is null then the cursor is exhausted/empty and closed
        if(item == null) {
            db.close(); // you may not want to close the DB if you have more code....
            return;
        }
        // otherwise, do something with the item
    });
    

    実行する必要のある計算が多い場合は、Map-Reduce(参照 )コードはローカルではなくDBサーバーで実行されるため、ニーズに適合します。



    1. pymongoを介してmongodb認証のユーザー名パスワードを検証するにはどうすればよいですか?

    2. コレクションを取得し、応答に値を追加します

    3. MongodDB $は、配列から1つの要素のみをプルします

    4. ワイルドカードテキストインデックスと継承されたスキーマ