Skip to main content

New answers tagged

0 votes

How should I implement System Design patterns in general and when to use these patterns in every aspect?

When to chose a pattern in YAGNI? Well, essentially, when you know that you'll need it. Basic example. I regularly bootstrap projects for my personal usage. As I can't afford them to become ...
Arseni Mourzenko's user avatar
0 votes

Difference between facade and orchestrator in the context of microservices

At work I have written an Edifact parsing and validation framework that has a bunch of classes you could use to refine how the parser behaves, what it considers as valid Edifact and what it sees as ...
Roman Vottner's user avatar
1 vote

Where to initialize clients in C server?

The logic that you describe looks very much like session management, the glue that ties together network connection with a user. As it is a different concern than the ones handled in other modules, ...
Christophe's user avatar
  • 82.3k
2 votes

Where to initialize clients in C server?

Whenever one has a requirement which does not fit into the existing module structure of a system, I would recommend to start with a new module first. Said that, during the evolution of this new module,...
Doc Brown's user avatar
  • 221k

Top 50 recent answers are included