-
i find the idea of go-kit to be very interesting. i hope to be able to contribute to it in the future.
i have a question, not sure if this is the right place to ask, os is a right question.
is…
-
Hi @donnemartin , I am big fan of your work. I have a question, how you draw these nice diagram, l mean which tools did you used. Thanks.
**EDIT by donnemartin**: 👍 to indicate interest in the tem…
-
Port the event subscription strategy from router to process_manager_instances, and completely remove process manager router. The idea is to start the process manager that is part of a specific transac…
-
### Edit: ~~so far we've decided on "process manager" instead of "delegator".~~ They're called "Epics".
Although undocumented at the moment, we've added the ability to compose and inject _static_ act…
-
with a unidirectional data flow, it starts to make it much easier to use a CQRS pattern.
Here is a decent link that talks about this pattern:
https://medium.com/technology-learning/event-sourcing-and…
-
I had a discussion today with @bwaidelich and we concluded that there is actually no concrete code in our package which would be part of a "CQRS" library. Actually, the whole package is about Event So…
-
Most of what I know about CQS comes form Mark Seemann's blog, which basically says that when we run a query we don't mutate any states in the system and we just return the result and asking the questi…
-
```
public class InvoiceCreateCommandHandlerAsync: AsyncRequestHandler
{
private readonly DbContext _db;
public InvoiceCreateCommandHandlerAsync(
DbContext db)
{
_db= db;
…
vip30 updated
7 years ago
-
Why use a lock in the writing method or the repository? This will harm performance AFAIK
https://github.com/dasiths/EventSourcingDemo/blob/master/EventSourcingDemo/Repository/Repository.cs
-
As i'm looking at section 2.3.1 of the documentation i can't help noticing this line:
```
const topic = yield select(getTopic);
```
To my understanding sagas should be state machines and as such the…
ghola updated
8 years ago