hyper-mesh icon indicating copy to clipboard operation
hyper-mesh copied to clipboard

Model.all.count increments twice on client doing a save.

Open catmando opened this issue 7 years ago • 0 comments

If you do Model.all.count without for example doing a Model.all.each ... . There will be no actual collection of records, just the count.

If you create a new record on the browser, the count (in this case) will increment by 2.

Why? Because on that client it sees the record being created (adds 1 to the count) and then milliseconds later receives a broadcast saying a new record was created (adds 1 to the count).

catmando avatar May 01 '18 22:05 catmando