comparison test.ini @ 629:7e536d1af60d beta

Code refactoring,models renames cleaned up sqlalchemy sessions, added cache support to most queries in models fixed test.ini file
author Marcin Kuzminski <marcin@python-works.com>
date Thu, 21 Oct 2010 01:38:14 +0200
parents 2642f128ad46
children 8acbfa837180
comparison
equal deleted inserted replaced
628:dd06bdf974c8 629:7e536d1af60d
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
54 beaker.cache.super_short_term.type=memory
55 beaker.cache.super_short_term.expire=10
56
57 beaker.cache.short_term.type=memory
58 beaker.cache.short_term.expire=60
59
53 beaker.cache.long_term.type=memory 60 beaker.cache.long_term.type=memory
54 beaker.cache.long_term.expire=36000 61 beaker.cache.long_term.expire=36000
55 beaker.cache.short_term.type=memory 62
56 beaker.cache.short_term.expire=60 63
57 beaker.cache.super_short_term.type=memory 64 beaker.cache.sql_cache_short.type=memory
58 beaker.cache.super_short_term.expire=10 65 beaker.cache.sql_cache_short.expire=5
66
67 beaker.cache.sql_cache_med.type=memory
68 beaker.cache.sql_cache_med.expire=360
69
70 beaker.cache.sql_cache_long.type=file
71 beaker.cache.sql_cache_long.expire=3600
59 72
60 #################################### 73 ####################################
61 ### BEAKER SESSION #### 74 ### BEAKER SESSION ####
62 #################################### 75 ####################################
63 ## Type of storage used for the session, current types are 76 ## Type of storage used for the session, current types are
64 ## "dbm", "file", "memcached", "database", and "memory". 77 ## dbm, file, memcached, database, and memory.
65 ## The storage uses the Container API 78 ## The storage uses the Container API
66 ##that is also used by the cache system. 79 ##that is also used by the cache system.
67 beaker.session.type = file 80 beaker.session.type = file
68 81
69 beaker.session.key = rhodecode 82 beaker.session.key = rhodecode