Theodor Diaconu

Results 135 issues of Theodor Diaconu

Let's discuss

THINK!

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 }) ```

enhancement

- [ ] Limit-Sort - [ ] Direct - [ ] Default - [ ] Reload - [ ] Requery

enhancement

OPLOGTOREDIS_ENV=true meteor test-packages ... This env gets read, the Config gets adapted properly, with externalRedisPublisher, and optimistic: false.

enhancement

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...

enhancement

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...

enhancement
THINK!

## 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...

enhancement

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({...

enhancement