Changes between Version 84 and Version 85 of ConfigurationGuidelines


Ignore:
Timestamp:
09/19/10 17:44:06 (14 years ago)
Author:
Fran Boon
Comment:

--

Legend:

Unmodified
Added
Removed
Modified
  • ConfigurationGuidelines

    v84 v85  
    208208
    209209== Performance Optimisation ==
    210  * Disable DB migrations in {{{000_config.py}}}: migrate = False
     210 * Disable DB migrations in {{{000_config.py}}}: deployment_settings.base.migrate = False
     211 * Disable DB prepopulation in {{{000_config.py}}}: deployment_settings.base.prepopulate = False
    211212 * Use MySQL or PostgreSQL instead of SQLite
    212213  * Create Indexes on commonly-accessed tables
    213  * set Empty=False in {{{models/zzz_1st_run.py}}} instead of doing a DAL hit
    214214 * set modules to load from a hardcoded app name instead of substituting request.application in {{{models/00_db.py}}}
    215215