Changes between Version 79 and Version 80 of DeveloperGuidelines/Optimisation
- Timestamp:
- 02/06/12 13:21:05 (13 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
DeveloperGuidelines/Optimisation
v79 v80 31 31 * ConfigurationGuidelines#PerformanceOptimisation 32 32 33 Useful walk-through performance from Google Maps team: 34 * http://www.youtube.com/watch?v=7pCh62wr6m0 35 33 36 "Slow post-load response is more harmful to user satisfaction than slow page load times, according to current HCI research." 37 38 34 39 === Web2Py === 35 40 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.