Changes between Version 69 and Version 70 of ConfigurationGuidelines


Ignore:
Timestamp:
08/13/10 13:21:37 (14 years ago)
Author:
Fran Boon
Comment:

--

Legend:

Unmodified
Added
Removed
Modified
  • ConfigurationGuidelines

    v69 v70  
    193193
    194194=== Performance Optimisation ===
     195 * Disable DB migrations in {{{000_config.py}}}: migrate = False
     196 * Use MySQL or PostgreSQL instead of SQLite
     197  * Create Indexes on commonly-accessed tables
    195198 * set Empty=False in {{{models/zzz_1st_run.py}}} instead of doing a DAL hit
    196  * set modules to load from a hardocded app name instead of substituting request.application in {{{models/00_db.py}}}
     199 * set modules to load from a hardcoded app name instead of substituting request.application in {{{models/00_db.py}}}
    197200
    198201 * Use [http://developer.yahoo.com/yslow/ YSlow] Firefox plugin to analyse the site
     
    202205 * GZip static files in Apache: http://developer.yahoo.com/performance/rules.html#gzip
    203206 * Set Expires on static files in Apache
    204  * Use MySQL or PostgreSQL instead of SQLite
    205  * Disable DB migrations in {{{00_db.py}}}: migrate = False
     207
    206208 * Bytecode compile the application
    207209 * Enable caching