Hi there, this is not really a bug but just something that I’m mostly just surprised by.
I am using Firebase as our companies back-end database for a couple of small services. I have two completely separate web applications but they use the same firebase database. I figured that that the way it ought to work is that if I update a certain object in one web app, the other web app would not know about it until it called model() again. That doesn’t appear to be true though. As soon as I update Firebase, the other website immediately updates with the new information (no refresh require or explicit querying required).
Is this normal for Ember? Does my website just keep querrying Firebase for updates every second? How did Ember know the database got updated without me ordering any queries or refreshing anything. I’m still learning how to use Ember.
Thank you!