探して見つけました
_suppress_initial: true
しかし、0.54では機能しません
Orders Collection のようなコレクションを観察したい。
大量の注文があり、新しい注文が追加されたときに、観察して別のコレクションを更新したい場合。
私は Meteor.publish に監視を入れませんでした。その監視を停止しないと、サーバーの実行中に常に監視し続けると、サーバーの速度が低下しますか?
if Meteor.isServer
obOrders = Orders.find({}).observe # when server restart does this slow down performance ?
_suppress_initial: true # doesnt work
added: (order) ->
console.log order # still add exist documents
if Date.now() - order.timestamp < 500
console.log order # update another one
または、Orders.find {}、limit: 50 を制限し、タイムスタンプで並べ替えて最新のドキュメントを観察する必要がありますか?
サーバー Meteor.startup または Meteor.publish に監視を配置するには、その 2 つの条件の違いは何ですか?
それを Meteor.startup に入れた場合、それはシングルトン観察を行うということですか?