Changes between Version 58 and Version 59 of DeveloperGuidelines/Optimisation


Ignore:
Timestamp:
09/07/10 13:07:35 (14 years ago)
Author:
Fran Boon
Comment:

--

Legend:

Unmodified
Added
Removed
Modified
  • DeveloperGuidelines/Optimisation

    v58 v59  
    2121 * http://aymanh.com/9-javascript-tips-you-may-not-know#String_Concatenation_vs._Array.join
    2222
    23 When to load the JS:
     23When 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]
    2427 * http://ajaxpatterns.org/On-Demand_Javascript
    25  * http://www.websiteoptimization.com/speed/tweak/delay/
    2628=== Web2Py ===
    2729 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.