You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Hi @santiq, your approach is interesting, and the whole architecture is nice and clean. I'm working on an EDD approach in my project which I used Redis streams under the hood as my event stream. on EDD there is a concept of projection that defines a read model and it's a long run process as my process listens to events and take an action when new events pushed to stream (CQRS).
each projection is a long-running dispatcher function that handles the events and updates db.
I would like to manage these types of projections under the forked process. would you mind explaining how you do that in your code structure?
The text was updated successfully, but these errors were encountered:
bidva
changed the title
manage long running processes
How to manage long running processes
Jan 1, 2021
Hi @santiq, your approach is interesting, and the whole architecture is nice and clean. I'm working on an EDD approach in my project which I used Redis streams under the hood as my event stream. on EDD there is a concept of projection that defines a read model and it's a long run process as my process listens to events and take an action when new events pushed to stream (CQRS).
each projection is a long-running dispatcher function that handles the events and updates db.
I would like to manage these types of projections under the forked process. would you mind explaining how you do that in your code structure?
The text was updated successfully, but these errors were encountered: