Optimizing is not only for better performance
4 jaharios 0 8/27/2025, 11:07:04 PM
Developing using the optimize latter approach can lead to worse experience especially when you can save building/compiling time for a project with basic optimization.
I found out that I could cut the startup time (importing/ model loading time) in a project in half, after I started optimizing. (Running a profiler and finding out what takes time and cutting unused imports/stuff from used libraries and doing the work in parallel for time consuming stuff).
This lead to faster bug fixing and testing because less time was spend at startup. So I was able to add features and test them with multiple restarts in half the time without loosing focus on the waiting time, making development way more smooth.
In conclusion, yeah leave out optimization at start, but as soon you have something working, make sure you are not wasting time while developing.
No comments yet