This repository was archived by the owner on Oct 19, 2018. It is now read-only.
This repository was archived by the owner on Oct 19, 2018. It is now read-only.
Model.all.count increments twice on client doing a save. #94
Open
Description
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).