Changes between Version 22 and Version 23 of DeveloperGuidelines/Optimisation
- Timestamp:
- 05/13/10 19:15:23 (15 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
DeveloperGuidelines/Optimisation
v22 v23 28 28 There are more things to consider besides performance, e.g. usability and maintainability of code. New contributors should be able to easily understand the code, and bugs should be easy to find. 29 29 30 Python performance tips: http://wiki.python.org/moin/PythonSpeed/PerformanceTips 30 Python performance tips: 31 * http://wiki.python.org/moin/PythonSpeed/PerformanceTips 31 32 32 33 === Specific Examples === … … 51 52 (0.012 vs. 0.007 seconds vs in a test case) 52 53 53 Javascript string concatenation: http://aymanh.com/9-javascript-tips-you-may-not-know#String_Concatenation_vs._Array.join 54 Javascript string concatenation: 55 * http://aymanh.com/9-javascript-tips-you-may-not-know#String_Concatenation_vs._Array.join 54 56 55 57 === Profiling ===