0

I'm interested in the bandwidth usage aspect of meteor. When a collection is modified, do clients receive the entire updated collection or just the field(s) that were changed (or some kind of delta/diff data)?

Dave
  • 12,117
  • 10
  • 46
  • 52

2 Answers2

2

It's just the changed field values that are sent over the wire. If you want, you can see it for yourself by following these instructions.

Community
  • 1
  • 1
Peppe L-G
  • 7,351
  • 2
  • 25
  • 50
0

It also depend on your subscriptions as well. If you didn't subscribe the field you updated. It will not be send down to the client. You should really look into 'merge box' to understand this better.

I think Chris from eventedmind did videos on this topic before.

Here are links: https://www.eventedmind.com/feed/meteor-liveresultsset
https://www.eventedmind.com/feed/meteor-livedatasession

Bozhao
  • 181
  • 2
  • 5