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

उल्का में मोंगोडब को प्रतिक्रियाशील रूप से कैसे एकत्रित करें

आपके पास क्लाइंट साइड संग्रह नहीं है। साथ ही, इस सहायक को कॉल करने से पहले आपको सदस्यता लेनी होगी।

इसे आजमाएं

import { Template } from 'meteor/templating';
import { ReactiveVar } from 'meteor/reactive-var';
import './main.html';

var clientReport = new Mongo.Collection('clientReport');

Meteor.subscribe("reportTotals");

Template.header.helpers({
    'tasks': function () {
        console.log("tasks helper called : ");     
        console.log(clientReport.find().fetch());
    },   
});

आपको पाइपलाइन की भी आवश्यकता नहीं है और सर्वर कोड पर कोई ऑटोरन नहीं है, इसे आजमाएं:

AtmData = new Mongo.Collection('atmdata');

Meteor.startup(() => {
  // code to run on server at startup
/*     AtmData.insert({
        bottles_used: 123,
    }); */

});



Meteor.publish("reportTotals", function() {
// Remember, ReactiveAggregate doesn't return anything

    ReactiveAggregate(this, AtmData, [{
        // assuming our Reports collection have the fields: hours, books    
        $group: {
            '_id': null,
            'bottles_used': {
            // In this case, we're running summation. 
                $sum: '$bottles_used'
                // $sum: 1
            }
        }
        }], { clientCollection: "clientReport" });    
});


  1. Redis
  2.   
  3. MongoDB
  4.   
  5. Memcached
  6.   
  7. HBase
  8.   
  9. CouchDB
  1. यह msiexec.exe कमांड पॉवरशेल में काम क्यों नहीं करता है?

  2. MongoDB पर व्यवस्थापक/सामग्री प्रबंधन इंटरफ़ेस बनाने के लिए एक अच्छा टूल?

  3. विंडोज़ पर मोंगोडीबी समस्या निवारण (सी #) (क्या करना है?)

  4. Mongodb . के लिए गोलांग एमजीओ में एकत्रीकरण

  5. जावा के साथ MongoDB में एक सरणी में मान जोड़ना