How to Set OPLOG Polling Interval?

How to Set OPLOG Polling Interval?

As far as I know the point of oplog is that you aren’t polling. Meteor just opens a connection to Mongo with a cursor that continually receives data from Mongo as the oplog changes. I guess the answer is that you can’t set the polling interval, changes will be received as fast as the connection/network will allow.

2 Likes

As @mjmasn said there is no need to set an interval as the database sends all changes to the client. You can read more about how it works here: https://github.com/meteor/meteor/wiki/Oplog-Observe-Driver

1 Like

Thanks! I had a lot of concerns about this.

I will be find a different way