102
We've refactored to microservices
(lemmy.ml)
Post funny things about programming here! (Or just rant about your favourite programming language.)
I find what you generally want is a service bus. For example, if you have common tasks like sending emails, making PDFs, etc. you can create generic services that handle the action, and then call them providing the context such as the document the service should operate on. Meanwhile, actual business logic and the state should absolutely live in a single place.