Software Design Principles – Scalability

1 · Shane Mulligan · Oct. 14, 2019, 11 a.m.
Types of scalability https://elastisys.com/2015/09/10/scalability-design-principles/ Performance Parallelism and asynchronism is good. Amdahl’s Law Performance does not scale perfectly linearly. Some problems are simply better suited for tackling with a parallel approach. Speedup of a program using multiple processors in parallel computing is limited by the sequential fraction of the program. A limit to how much benefit we can get from increasing capacity. Intended for parallel computing, not di...