Changeset 571 for trunk/grails-app/conf
- Timestamp:
- Jun 6, 2010, 12:11:11 AM (14 years ago)
- Location:
- trunk/grails-app/conf
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/grails-app/conf/BootStrap.groovy
r508 r571 16 16 createDataService.createBaseData() 17 17 createDataService.createDemoData() 18 createDataService.startLucene() 18 19 } 19 20 test { … … 21 22 createDataService.ensureSystemAndAdminAccess() 22 23 createDataService.createBaseData() 24 createDataService.startLucene(false) 23 25 } 24 26 production { … … 26 28 createDataService.ensureSystemAndAdminAccess() 27 29 createDataService.createBaseData() 30 createDataService.startLucene() 28 31 } 29 32 } -
trunk/grails-app/conf/Searchable.groovy
r562 r571 124 124 * If false, you must manage the index manually using index/unindex/reindex 125 125 */ 126 mirrorChanges = true126 mirrorChanges = false 127 127 128 128 /** … … 137 137 * which means do a non-forking, otherwise "fork" is recommended 138 138 */ 139 bulkIndexOnStartup = true139 bulkIndexOnStartup = false 140 140 141 141 /**
Note: See TracChangeset
for help on using the changeset viewer.