• 1 Post
  • 35 Comments
Joined 1 year ago
cake
Cake day: July 15th, 2023

help-circle





  • Tbh mostly microservices solves two issues for me:

    1. You can scale resource-heavy operations without an impact of scaling everything else.
    2. You kind of ”force” people to keep things contained, instead of making everything interdependant. Which helps containing issues with updates to certain functionality to only have an impact on that functionality.

    You could do #2 in a ”monolithic” setup as well (by doing modules or libraries or something), it just never works out that way in practice