############################################################################### # hibernate.dialect # # The Hibernate dialect that matches the database you're using with iEat. # # Postgres: org.hibernate.dialect.PostgreSQLDialect # MySQL: org.hibernate.dialect.MySQLDialect hibernate.dialect=org.hibernate.dialect.PostgreSQLDialect ############################################################################### # hibernate.show_sql # # Set to 'true' to enable Hibernate SQL debugging. hibernate.show_sql=false ############################################################################### # recipe.image.base.path # # The path to a directory that the application will manage the uploaded # recipe images. This directory must allow write access to the user or group # the application runs as, as it will try to create image file here. recipe.image.base.path=/data/ieat-images ############################################################################### # recipe.image.base.url # # A URL, relative to the ieat webapp URL, to serve images from. Image URLs # will be constructed by appending the image name to this path. For example # for a recipe image named "123.jpg" and a recipe.image.base.url of "/img/" # and a web context of "/ieat" then the image URL will be "/ieat/img/123.jpg". recipe.image.base.url=/img/ ############################################################################### # lucene.index.base.path # # The path to a directory that the application will manage the Lucene search # indices. This directory must allow write access to the user or group the # application runs as, as it will try to create directories and files here. lucene.index.base.path=/var/ieat/lucene-index ############################################################################### # lucene.index.optimize.trigger # # The number of items to index before triggering a Lucene index optimization. lucene.index.optimize.trigger=50 ############################################################################### # lucene.index.optimize.never # # If true, then never try to optimize the Lucene index for searches. If false # then allow optimizing according to normal parameters (including after re- # indexing an entire index. lucene.index.optimize.never=false ############################################################################### # lucene.update.buffer.size # # The number of index update requests to buffer before actually performing the # index requests. This has the effect of "batch" indexing, and if set to the # value of 1 this mode will be disabled and index requests will occur as they # arrive to the index service. lucene.update.buffer.size=1 ############################################################################### # lucene.update.buffer.flush # # This sets the number of milliseconds the index buffers will be flushed, # i.e. any unprocessed items will be indexed even if the index buffer is not # full. Any value greater than 0 will cause the application to flush the # buffers after that many milliseconds has past. Setting this greater than # 0 only makes sense if index.update.buffer.size is also set to something # greater than 1, since when then buffer size is 1 there will really isn't # a "buffer" to flush. lucene.update.buffer.flush=0 ############################################################################### # lucene.snowball.stemmer.name # # The Lucene Snowball stemmer name to use, i.e. language to support. # See the Lucene JavaDocs on org.apache.lucene.analysis.snowball.SnowballFilter # for the available languages and more information. lucene.snowball.stemmer.name=English ############################################################################### # index.timezone.java