-
I'm going to refactor the command sequence pattern into a proper saga pattern with support for compensation actions. Compensation actions will also work with the standard command pattern and triggered…
-
### Description:
The Microservices - Database per Service design pattern advocates for each microservice to have its own private database. This design pattern is crucial for achieving loose coupling b…
-
Hi there,
i like your suggested patterns, bundling react-native, redux-saga and firebase together.
My aim is to understand the 'whole thing' and figure out, how these patterns work in a runnable app…
ghost updated
6 years ago
-
Tasks:
- migrate to DDD on the hexagonal architecture
- create sagas for each internal operation
- migrate to event communication instead of HTTP REST
- implement sagas in the choreography pattern…
-
Hi @epeli!
I was wondering how you implement Redux-Saga API calls.
If I take the default Redux-Saga readme example:
```
import { call, put, takeEvery, takeLatest } from 'redux-saga/effects'
…
-
Hey,we have studied your framework in recent days and very appreciate your ideas and work on maintaining the consistency of transactions in the microservice architecture. Surprisingly, this is exactly…
-
See here https://github.com/cdk-patterns/serverless/tree/main/the-saga-stepfunction/python/lambda_fns/
Are there any actual Python samples?
-
提到`saga`,就必然会说到`generator`.而说到`generator`,就要讲下`promise`的区别。
最简单的换来说:
`promise`: 好比机关枪没办法一发一发发射。
`generator`:一枪一下,随时开关控制。
所以从精细化控制,一些库用到了`generator`,如`saga`.
整体过了遍saga,在这里自我理解作者追求几个点:
* 精细化…
onvno updated
4 years ago
-
Does the code base have any examples of handling long-running (distributed) transactions? Supervisor, Saga, Process Manager patterns?
Thanks!
-
Hi Alexey,
I'm working on a project which required saga features. The Sample-Courier provided by MassTransit describes everything I need, except the storing part.
So I'm writing a POC to be more…