Changes between Version 79 and Version 80 of DeveloperGuidelines/Optimisation


Ignore:
Timestamp:
02/06/12 13:21:05 (13 years ago)
Author:
Fran Boon
Comment:

--

Legend:

Unmodified
Added
Removed
Modified
  • DeveloperGuidelines/Optimisation

    v79 v80  
    3131 * ConfigurationGuidelines#PerformanceOptimisation
    3232
     33Useful walk-through performance from Google Maps team:
     34 * http://www.youtube.com/watch?v=7pCh62wr6m0
     35
    3336"Slow post-load response is more harmful to user satisfaction than slow page load times, according to current HCI research."
     37
     38       
    3439=== Web2Py ===
    3540 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.