I\'m trying to stream some syslog data into Meteor collections via node.js. It\'s working fine, but the Meteor client polling cycle of ~10sec is too long of a cycle for my t
According to this screencast its possible to simply call the meteor-methods declared by the collection. In your case the code would look like this:
ddpclient.call('/counts/insert', [{hits: 1111}], function(err, result) { console.log('called function, result: ' + result); })