MongoDB
 sql >> डेटाबेस >  >> NoSQL >> MongoDB

नोडज का उपयोग करके पूरे संग्रह (मोंगोडब) में खोजें

मैं और अधिक क्लीनर लिखूंगा, नीचे नमूना उपयोग करता है async.parallel , वादा और Mongoose.Query

function list(req) {

    // promise or callback works as well
    return new Promise(function(resolve, reject){

        // npm install async --save
        var async = require('async'); 

        // some validation can be applied
        var page = {
            skip: req.query.start || 1,
            limit: req.query.length || 25,
            text: req.query.search || ''      // <== this is new property!
        };

        // reuse Mongoose.Query with search by regex
        var Query = Models.SaleModel.find({
            product_name: new RegExp(page.text, "i")
        });

        // run without waiting until the previous function has completed
        async.parallel([
            function(){
                Query.count(callback); // <== count
            },
            function(){
                Query.skip(page.skip).limit(page.limit).exec('find', callback); // <== items
                // or the below one should also work, just don't remember
                // Query.skip(page.skip).limit(page.limit).exec(callback);
            }
        ]), function(err, results){
            if(err){
                reject(err);
            } else {
                resolve({
                    count: results[0],
                    data: results[1]
                });
            }
        });
    });
}



  1. Redis
  2.   
  3. MongoDB
  4.   
  5. Memcached
  6.   
  7. HBase
  8.   
  9. CouchDB
  1. मोंगोडीबी $घटाना

  2. मैं एक सरणी सबफ़ील्ड में $geoIntersects / 2dsphere का उपयोग करके एक खोज कैसे करूँ?

  3. क्लाउड में ओपन सोर्स डेटाबेस का स्वचालन और प्रबंधन - ClusterControl की घोषणा 1.6

  4. Mongoose और MongoDB Node.JS ड्राइवर के लिए लॉगिंग कैसे सक्षम करें

  5. त्रुटि:आपके MongoDB एटलस क्लस्टर में किसी भी सर्वर से कनेक्ट नहीं हो सका