MongoDB
 sql >> डेटाबेस >  >> NoSQL >> 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
});

यदि आपको बहुत अधिक गणना करने की आवश्यकता है, तो आप इस पर विचार कर सकते हैं कि क्या कोई मानचित्र-घटा (संदर्भ ) आपकी आवश्यकताओं के अनुरूप होगा क्योंकि कोड स्थानीय रूप से नहीं, बल्कि DB सर्वर पर निष्पादित होगा।



  1. Redis
  2.   
  3. MongoDB
  4.   
  5. Memcached
  6.   
  7. HBase
  8.   
  9. CouchDB
  1. MongoDB - $text ऑपरेटर वाक्यांश या शब्द के लिए खोज करता है

  2. mongoose findById async का उपयोग करके प्रतीक्षा करें

  3. docker, mongorestore - ERROR:रूट डायरेक्टरी एक ही डेटाबेस का डंप होना चाहिए

  4. कॉस्मॉस डीबी मोंगो एपीआई अनुरोध दर का प्रबंधन कैसे करें बड़ी स्थिति है

  5. MongoEngine क्वेरी पर पठन वरीयता निर्दिष्ट करें