Changes between Version 85 and Version 86 of ConfigurationGuidelines
- Timestamp:
- 09/25/10 10:02:23 (15 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
ConfigurationGuidelines
v85 v86 209 209 == Performance Optimisation == 210 210 * Disable DB migrations in {{{000_config.py}}}: deployment_settings.base.migrate = False 211 * Bytecode compile the application: 212 {{{ 213 w2p 214 from gluon.admin import * 215 app_compile("eden", request) 216 }}} 211 217 * Disable DB prepopulation in {{{000_config.py}}}: deployment_settings.base.prepopulate = False 212 218 * Use MySQL or PostgreSQL instead of SQLite … … 222 228 * Set Expires on static files in Apache 223 229 224 * Bytecode compile the application225 230 * Enable caching 226 231 * return response.render('customview.html', data=data): http://groups.google.com/group/web2py/msg/39210d40d8a729c0