Skip to content
Andrea Balducci edited this page Mar 18, 2014 · 2 revisions

Global checkpoint id is implemented with an optimistic loop.

The optimistic loop is implemented client-side, every operation requires a network rountrip.

An experimental server side optimistic loop (one roundtrip) can be enabled on Wireup.

Wireup.Init()
    .UsingMongoPersistence(
        "eventstore",
        new DocumentObjectSerializer(),
        new MongoPersistenceOptions() { ServerSideOptimisticLoop = true }
    )
    .Build();
Clone this wiki locally