Changes between Version 60 and Version 61 of DeveloperGuidelines/Optimisation
- Timestamp:
- 09/07/10 13:15:50 (14 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
DeveloperGuidelines/Optimisation
v60 v61 27 27 * http://ajaxpatterns.org/On-Demand_Javascript 28 28 * ConfigurationGuidelines#PerformanceOptimisation 29 30 "Slow post-load response is more harmful to user satisfaction than slow page load times, according to current HCI research." 29 31 === Web2Py === 30 32 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.