comparison production.ini @ 592:0a48c1ec04fc

#37 fixed json imports for python2.5 removed cache manager settings out of meta to ini files docs update.
author Marcin Kuzminski <marcin@python-works.com>
date Tue, 12 Oct 2010 22:25:25 +0200
parents f99075170eb4
children 53128b6b9a4d
comparison
equal deleted inserted replaced
591:1e2adb37cab6 592:0a48c1ec04fc
45 cache_dir = %(here)s/data 45 cache_dir = %(here)s/data
46 46
47 #################################### 47 ####################################
48 ### BEAKER CACHE #### 48 ### BEAKER CACHE ####
49 #################################### 49 ####################################
50 beaker.cache.data_dir=/%(here)s/data/cache/data 50 beaker.cache.data_dir=/%(here)s/data/cache/data
51 beaker.cache.lock_dir=/%(here)s/data/cache/lock 51 beaker.cache.lock_dir=/%(here)s/data/cache/lock
52 beaker.cache.regions=super_short_term,short_term,long_term 52 beaker.cache.regions=super_short_term,short_term,long_term,sql_cache_short,sql_cache_med,sql_cache_long
53 beaker.cache.long_term.type=memory 53 beaker.cache.long_term.type=memory
54 beaker.cache.long_term.expire=36000 54 beaker.cache.long_term.expire=36000
55 beaker.cache.short_term.type=memory 55
56 beaker.cache.short_term.expire=60 56 beaker.cache.short_term.type=memory
57 beaker.cache.super_short_term.type=memory 57 beaker.cache.short_term.expire=60
58 beaker.cache.super_short_term.expire=10 58
59 beaker.cache.super_short_term.type=memory
60 beaker.cache.super_short_term.expire=10
61
62 beaker.cache.sql_cache_short.type=memory
63 beaker.cache.sql_cache_short.expire=5
64
65 beaker.cache.sql_cache_med.type=memory
66 beaker.cache.sql_cache_med.expire=360
67
68 beaker.cache.sql_cache_long.type=file
69 beaker.cache.sql_cache_long.expire=3600
59 70
60 #################################### 71 ####################################
61 ### BEAKER SESSION #### 72 ### BEAKER SESSION ####
62 #################################### 73 ####################################
63 ## Type of storage used for the session, current types are 74 ## Type of storage used for the session, current types are
64 ## dbm, file, memcached, database, and memory. 75 ## "dbm", "file", "memcached", "database", and "memory".
65 ## The storage uses the Container API 76 ## The storage uses the Container API
66 ##that is also used by the cache system. 77 ##that is also used by the cache system.
67 beaker.session.type = file 78 beaker.session.type = file
68 79
69 beaker.session.key = rhodecode 80 beaker.session.key = rhodecode