Changes between Version 57 and Version 58 of DeveloperGuidelines/Optimisation
- Timestamp:
- 09/07/10 12:58:08 (14 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
DeveloperGuidelines/Optimisation
v57 v58 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: 24 * http://ajaxpatterns.org/On-Demand_Javascript 25 * http://www.websiteoptimization.com/speed/tweak/delay/ 23 26 === Web2Py === 24 27 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.