Changes between Version 58 and Version 59 of DeveloperGuidelines/Optimisation
- Timestamp:
- 09/07/10 13:07:35 (14 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
DeveloperGuidelines/Optimisation
v58 v59 21 21 * http://aymanh.com/9-javascript-tips-you-may-not-know#String_Concatenation_vs._Array.join 22 22 23 When to load the JS: 23 When to load the scripts: 24 * http://developer.yahoo.com/performance/rules.html 25 * http://www.websiteoptimization.com/speed/tweak/delay/ 26 * [http://www.uic.edu/depts/scailab/system/tutorial.shtml XSSI] 24 27 * http://ajaxpatterns.org/On-Demand_Javascript 25 * http://www.websiteoptimization.com/speed/tweak/delay/26 28 === Web2Py === 27 29 1. Optimize the models, throw away what we don't need. Every field counts.[[BR]]Especially problematic in view of performance are references (joins), as they execute implicit DB requests. The more complex references are, the slower the model loads.