Event Store Persistent Subscriptions
One of the really nice features of Event Store is the Persistent Subscriptions that were implemented in v3.2.0. I was previously using catch-up subscriptions but needed the ability to have many worker processes handle events from the same stream. First lets take a look at couple of the subscription models Event Store suports. Catch Up Subscriptions As mentioned, I previously would use catch-up subscriptions for various use cases. One of them would be for sending emails on specific events occurring in the system. A worker process would subscribe to the $all event stream and handle incoming messages accordingly. The issue is that catch… Read More »Event Store Persistent Subscriptions