Did any one implemented MongoDB Transactions with Meteor keeping redis-oplog reactivity in place.
We are facing issue with reactivity when we use rawCollection for transactions.
You can check the docs on redis-oplog Vent.
## Redis Vent
The Redis Vent allows you to send custom events from the server to the clients that subscribe to it.
These messages will not be stored in any way on the server.
You may need this if you want absolute control over the reactivity.
It uses Redis of course to communicate events to all instances in your infrastructure that share the same Redis connection.
What this means:
1. You can implement a very efficient and scalable chat application, at the expense of writing more code to achieve this, which is normal.
2. You can emulate reactivity with other databases/apis other than mongo.
### API
On the server:
```js
import {Vent} from 'meteor/cultofcoders:redis-oplog';
// This creates a publication end-point (make sure the name does not collide with any existing publish endpoints)
This file has been truncated. show original