In NServiceBus 4.6.5 messages go to the Worker servers using the Round-Robin algorithm.
I have some data in the Sagas to detect business messages out of sync. That data is stored into an Oracle Database.
How to make sure all servers share the same SagaData (in sync) all the time, so that if one server makes changes to that SagaData, the other Servers SagaData gets invalidated and updated automatically?
I've been reading this and in NServiceBus 4.6.5 I'm implementing the ISagaPersister interface and persisting everything to an Oracle Database.
Thanks