Menu
  • HOME
  • TAGS

Meteor sends entire array when only single element is updated

javascript,arrays,mongodb,meteor,livequery

The problem is that DDP only supports changed messages at the top-level field granularity. With your current structure, any change to a sub-field of squares will result in the entire squares field being transmitted to the client. One alternative is to store each element of the 2D array as a...