Changeset 25906
- Timestamp:
- 2012-07-06T15:43:17+12:00 (11 years ago)
- Location:
- gs3-extensions/solr/trunk/src
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
gs3-extensions/solr/trunk/src/README.txt
r25903 r25906 1 1 README file for Greenstone 3's Solr extension 2 3 CONTENTS OF THIS README 4 - Acquiring and setting up the Solr extension 5 - Importing and (re-)building a collection with the Solr extension 6 - Running the Solr extension's Jetty server on its own 7 - Some handy manual commands 8 - Adding new Java classes into the Solr extension 2 9 3 10 … … 95 102 96 103 97 SOME HANDY MANUAL COMMANDS :104 SOME HANDY MANUAL COMMANDS 98 105 The commands expressed below are for Linux, adjust them for Windows 99 106 … … 109 116 The above posts the solr-jdbm-demo collection's didx (document-level) index folder contents to Solr to be ingested. 110 117 118 119 ADDING NEW JAVA CLASSES INTO THE SOLR EXTENSION 120 121 1. Create the Java classes and place them into their package within the ext/solr location. 122 123 2. Adjust the ant build file in the solr extension (ext/solr/build.xml) to take these java source files into account during the setup process that takes place when the ant target 'add-service' is executed. The relevant portions of this build.xml file are likely to be the property 'java-service-files' and the property 'java-util-files'. 124 -
gs3-extensions/solr/trunk/src/build.xml
r25900 r25906 34 34 35 35 <property name="java-util-files" 36 value="SolrQueryWrapper.java 37 SolrQueryResult.java"/> 36 value="SolrFacetWrapper.java 37 SolrQueryWrapper.java 38 SolrQueryResult.java"/> 38 39 39 40 <property name="property-files"
Note:
See TracChangeset
for help on using the changeset viewer.