What are some good code optimization methods?
- by esac
I would like to understand good code optimization methods and methodology.
How do I keep from doing premature optimization if I am thinking about performance already.
How do I find the bottlenecks in my code?
How do I make sure that over time my program does not become any slower?
What are some common performance errors to avoid (e.g.; I know it is bad in some languages to return while inside the catch portion of a try{} catch{} block