~loggerhead-team/loggerhead/trunk-rich

« back to all changes in this revision

Viewing changes to start-loggerhead.py

the diff cache isn't adding very much, and can grow very large.  let's just
get rid of it, and only cache plain changes.  when a diff is desired, it will
be added on the way out.

Show diffs side-by-side

added added

removed removed

Lines of Context:
12
12
import cherrypy
13
13
cherrypy.lowercase_api = True
14
14
 
15
 
from loggerhead import daemon, release, util
 
15
from loggerhead import daemon, release
16
16
 
17
17
 
18
18
def make_handler(config, filename):
111
111
    Root = Root(config)
112
112
    
113
113
    # re-index every 6 hours
 
114
    
114
115
    index_freq = config.get('cache_rebuild_frequency', 6 * 3600)
115
116
    turbogears.scheduler.add_interval_task(initialdelay=1, interval=index_freq, action=Root._check_rebuild)
116
 
 
117
 
    util.set_date_format(config.get('date_format', 'fancy'))
 
117
    
118
118
    try:
119
119
        turbogears.start_server(Root)
120
120
    finally: