0
在設置中,Python每秒都會向數據庫(mongo)寫入數據,Meteor.js必須立即對新記錄插入作出反應。提高Meteor.observe的更新頻率
問題:但是,如下所示使用cursor.observe()
,控制檯在插入新記錄後僅輸出4-5秒。
問題:是否有可能增加更新頻率cursor.observe
?如果不是,將有什麼替代方案?
服務器/ news.js
var newsCursor = News.find({});
var newsHandle = newsCursor.observe({
added: function() {
console.log('New news added!');
}
});
您是否使用智能收藏包?儘管一旦oplog分支完成併合併到master中,這應該是不必要的。 – sbking
@Cuberto我沒有使用智能收藏包,將使用它的幫助? – Nyxynyx