Skip to main content

You are not logged in. Your edit will be placed in a queue until it is peer reviewed.

We welcome edits that make the post easier to understand and more valuable for readers. Because community members review edits, please try to make the post substantially better than how you found it, for example, by fixing grammar or adding additional resources and hyperlinks.

2
  • 2
    Have you built a POC and gathered hard data on the performance of the solutions you've thought of? Any deliberate performance optimization without data guiding exactly what's wrong is worthless - you may very well identify a "problem" which you then "fix", only to find the original took 350ms and the optimized takes 347ms, while the part you weren't looking at (because you didn't profile) is doing an extra 150ms of processing. Commented Sep 5, 2019 at 17:22
  • 1
    There is a chapter about modeling organization structures like this in Fowler's bool "Analysis patterns". Here you find this part online. And don't overthing performance beforehand, your will find out the real issues are at a completely different place. Commented Sep 7, 2019 at 8:13