5 ms·
The fallacy is assuming it takes more work to get good performance. When what’s really lacking is clarity about the problem and solution. Optimizing code for m
by groundzeros2015 17d ago
The fallacy is assuming it takes more work to get good performance. When what’s really lacking is clarity about the problem and solution.
Optimizing code for max performance does take work. But just not doing incredibly dumb things and writing simple programs just takes education (and re-education).
I can’t count how many times I’ve replaced a distributed system with for loop.
- DanielHB 16d agoYou are assuming a greenfield scenario, in large brownfield projects it is quite easy to degrade performance by innocent changes. That is usually when the perf goes to trash. It takes a lot more work to keep performance good in a large project than just letting it degrade.
- groundzeros2015 16d agoIf you aren’t willing to change the system (have no business reason to) then you can’t implement or benefit from any new paradigms or advice and are necessarily bound by prior decisions.