meteor-peerdb
meteor-peerdb copied to clipboard
Reactive database layer with references, generators, triggers, migrations, etc.
The most typical use case which we are not yet supporting is serialization/deserialization of fields. So that in JavaScript instances fields are represented by some other value than what is...
For now only posting related infos here for reference: - Whole Document handling pattern https://github.com/thiloplanz/v7files/wiki/Vermongo - Specific "fields" with history array (see collection2 autoValue example) https://github.com/aldeed/meteor-collection2 - Language versions. To...
Should we ran observers on the client side as well? This could be useful to populate improve latency compensation. And it would be useful because it would make local (client-only)...
Instead of observing all changes in all instances and then filtering them in the observe callback, we could provide already a query to the database to limit documents. For example,...
Generated fields could just use `observe` instead of `observeChanges`, because we are fetching document manually anyway to get all fields always.