Reputation: 3512
I am not able to understand where the DB of meteor lives(Client or server?). Also specifically I have the following two questions.
thank you.
Upvotes: 0
Views: 167
Reputation: 152046
Meteor uses MongoDB for the server-side database, and minimongo (an in-memory JavaScript MongoDB emulation) to perform many of the operations on the client while they're being sent to the server, such that the client doesn't have to wait for a server roundtrip. This is how latency compensation, one of the core seven principles, is achieved.
The meteor docs are a highly recommended read - http://docs.meteor.com
Upvotes: 2