|
|
|
|
|
by kumaraman
2680 days ago
|
|
Domain driven design from Eric Evans is a great resource for learning about how/where to separate out services. You will learn about how to model complex domain models and how to decompose them into Aggregate's. The Aggregate is the key to where to create new microservices, as each aggregate should only contain domain objects that relate to itself. Payments is a great example of an Aggregate. |
|