Changes between Initial Version and Version 1 of Projects/Advanced/Optimisation


Ignore:
Timestamp:
03/05/11 11:26:10 (14 years ago)
Author:
Michael Howden
Comment:

--

Legend:

Unmodified
Added
Removed
Modified
  • TabularUnified Projects/Advanced/Optimisation

    v1 v1  
     1= Optimisation =
     2There are many things which can be done to optimise the performance, so of them will be minor and some of them may require larger changes. The two goals are:
     3 * Faster
     4 * Less Bandwidth (smaller pages and/or more caching)
     5
     6== 1) Develop Automated Performance Metrics ==
     7Before Sahana Eden can be effectively optimised, we need a set of performance metrics to optimise to.
     8Metrics should:
     9 * Test as wide as wide a variety of the code as possible.
     10 * Be able to be automatically tested (''See:'' DeveloperGuidelinesTesting).
     11 * Cover different usage scenarios
     12  * Low bandwidth
     13  * High number of users
     14The Automated Performance Metrics, will also allow us to better share performance statistics of Sahana Eden.
     15
     16== 2) Make Enhancements to Sahana Eden ==
     17Once the metrics have been developed enhancements can be made to improve these. These enhancement
     18 * Using Profiler Tools to identify parts of the code which require more computation.
     19 * Avoid excess DB calls, Use web2py's {{{cache}}} instead
     20 * Move as much JS to static files
     21 * Investigate the possibility of loading large page components using AJAX
     22
     23----
     24''See Also:''
     25 * DeveloperGuidelinesOptimisation