Open rdw-software opened 3 years ago
Should compare multiple approaches to profiling:
os.time()
time
perf
See: Flame graphs? (https://www.brendangregg.com/FlameGraphs/cpuflamegraphs.html)
Also needs to make sure people understand the risks of premature optimization, and when performance actually matters. Plus, knowing to benchmark vs. "guessing".
Should compare multiple approaches to profiling:
os.time()
and similar naive facilitiestime
orperf
(Unix only) and other OS-level facilitiesSee: Flame graphs? (https://www.brendangregg.com/FlameGraphs/cpuflamegraphs.html)
Also needs to make sure people understand the risks of premature optimization, and when performance actually matters. Plus, knowing to benchmark vs. "guessing".