comparison rhodecode/config/deployment.ini_tmpl @ 609:c1c1cf772337

moved out sqlalchemy cache from meta to the config files. added caching query for permissions.
author Marcin Kuzminski <marcin@python-works.com>
date Tue, 12 Oct 2010 16:39:53 +0200
parents 2642f128ad46
children 79457e03ef68
comparison
equal deleted inserted replaced
608:101e07f82f22 609:c1c1cf772337
48 #################################### 48 ####################################
49 ### BEAKER CACHE #### 49 ### BEAKER CACHE ####
50 #################################### 50 ####################################
51 beaker.cache.data_dir=/%(here)s/data/cache/data 51 beaker.cache.data_dir=/%(here)s/data/cache/data
52 beaker.cache.lock_dir=/%(here)s/data/cache/lock 52 beaker.cache.lock_dir=/%(here)s/data/cache/lock
53 beaker.cache.regions=super_short_term,short_term,long_term 53 beaker.cache.regions=super_short_term,short_term,long_term,sql_cache_short,sql_cache_med,sql_cache_long
54 beaker.cache.long_term.type=memory 54 beaker.cache.long_term.type=memory
55 beaker.cache.long_term.expire=36000 55 beaker.cache.long_term.expire=36000
56
56 beaker.cache.short_term.type=memory 57 beaker.cache.short_term.type=memory
57 beaker.cache.short_term.expire=60 58 beaker.cache.short_term.expire=60
59
58 beaker.cache.super_short_term.type=memory 60 beaker.cache.super_short_term.type=memory
59 beaker.cache.super_short_term.expire=10 61 beaker.cache.super_short_term.expire=10
62
63 beaker.cache.sql_cache_short.type=memory
64 beaker.cache.sql_cache_short.expire=5
65
66 beaker.cache.sql_cache_med.type=memory
67 beaker.cache.sql_cache_med.expire=360
68
69 beaker.cache.sql_cache_long.type=file
70 beaker.cache.sql_cache_long.expire=3600
60 71
61 #################################### 72 ####################################
62 ### BEAKER SESSION #### 73 ### BEAKER SESSION ####
63 #################################### 74 ####################################
64 ## Type of storage used for the session, current types are 75 ## Type of storage used for the session, current types are