Changes between Version 57 and Version 58 of DeveloperGuidelines/Optimisation


Ignore:
Timestamp:
09/07/10 12:58:08 (14 years ago)
Author:
Fran Boon
Comment:

When to load the JS

Legend:

Unmodified
Added
Removed
Modified
  • DeveloperGuidelines/Optimisation

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