Theodor Diaconu
Theodor Diaconu
https://docs.mongodb.com/manual/reference/method/db.collection.update/#replace-a-document-entirely ```js // fully override the doc Collection.update(id, { a: 10, b: 5 }) ```
- [ ] Limit-Sort - [ ] Direct - [ ] Default - [ ] Reload - [ ] Requery
OPLOGTOREDIS_ENV=true meteor test-packages ... This env gets read, the Config gets adapted properly, with externalRedisPublisher, and optimistic: false.
Because it can get very tricky to make oplogtoredis send out namespaced/channeled events, because we're limited by MongoDB oplog, the easiest way would be to actually send those ourselves from...
If you want to have a simple count for your query, we should be able to use redis-oplog to catch added, updated, removed events, and update an ObservableCounter. If we...
## Problem Currently when we are performing an update, we retrieve all the observableCollections and we get the fields they specify along with the filter fields they specify. We merge...
Meteor doesn't currently support this, but we can do it. ## Problem ``` Collection.find(teamId, { fields: { name: true, users: { $elemMatch: { _id: this.userId } } } }); AnotherCollection.find({...