You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@lucene.apache.org by yo...@apache.org on 2011/03/11 03:16:31 UTC

svn commit: r1080427 - in /lucene/dev/branches/lucene_solr_3_1: ./ lucene/ solr/ solr/README.txt solr/example/README.txt

Author: yonik
Date: Fri Mar 11 02:16:31 2011
New Revision: 1080427

URL: http://svn.apache.org/viewvc?rev=1080427&view=rev
Log:
docs: update READMEs

Modified:
    lucene/dev/branches/lucene_solr_3_1/   (props changed)
    lucene/dev/branches/lucene_solr_3_1/lucene/   (props changed)
    lucene/dev/branches/lucene_solr_3_1/solr/   (props changed)
    lucene/dev/branches/lucene_solr_3_1/solr/README.txt
    lucene/dev/branches/lucene_solr_3_1/solr/example/README.txt

Modified: lucene/dev/branches/lucene_solr_3_1/solr/README.txt
URL: http://svn.apache.org/viewvc/lucene/dev/branches/lucene_solr_3_1/solr/README.txt?rev=1080427&r1=1080426&r2=1080427&view=diff
==============================================================================
--- lucene/dev/branches/lucene_solr_3_1/solr/README.txt (original)
+++ lucene/dev/branches/lucene_solr_3_1/solr/README.txt Fri Mar 11 02:16:31 2011
@@ -17,8 +17,8 @@
 Welcome to the Apache Solr project!
 -----------------------------------
 
-Apache Solr is a search server based on the Apache Lucene search
-library. 
+Solr is the popular, blazing fast open source enterprise search platform
+from the Apache Lucene project.
 
 For a complete description of the Solr project, team composition, source
 code repositories, and other details, please see the Solr web site at
@@ -29,12 +29,20 @@ Getting Started
 ---------------
 
 See the "example" directory for an example Solr setup.  A tutorial
-using the example setup can be found in "docs/tutorial.html" 
+using the example setup can be found at
+http://lucene.apache.org/solr/tutorial.html
+or in in "docs/tutorial.html" in a binary distribution.
 
 
 
-Files Included In Apache Solr Distributions
--------------------------------------------
+Files included in an Apache Solr binary distribution
+----------------------------------------------------
+
+example/
+  A self-contained example Solr instance, complete with a sample
+  configuration, documents to index, and the Jetty Servlet container.
+  Please see example/README.txt for information about running this
+  example.
 
 dist/apache-solr-XX.war
   The Apache Solr Application.  Deploy this WAR file to any servlet
@@ -45,12 +53,6 @@ dist/apache-solr-XX.jar
   Apache Solr Plugins (see http://wiki.apache.org/solr/SolrPlugins for
   more information).
 
-example/
-  A self-contained example Solr instance, complete with a sample
-  configuration, documents to index, and the Jetty Servlet container.
-  Please see example/README.txt for information about running this
-  example.
-
 docs/index.html
   The contents of the Apache Solr website.
   
@@ -82,7 +84,7 @@ Instructions for Building Apache Solr fr
 
      http://lucene.apache.org/solr/version_control.html
 
-4. Navigate to that folder and issue an "ant" command to see the available options
+4. Navigate to the "solr" folder and issue an "ant" command to see the available options
    for building, testing, and packaging Solr.
   
    NOTE: 

Modified: lucene/dev/branches/lucene_solr_3_1/solr/example/README.txt
URL: http://svn.apache.org/viewvc/lucene/dev/branches/lucene_solr_3_1/solr/example/README.txt?rev=1080427&r1=1080426&r2=1080427&view=diff
==============================================================================
--- lucene/dev/branches/lucene_solr_3_1/solr/example/README.txt (original)
+++ lucene/dev/branches/lucene_solr_3_1/solr/example/README.txt Fri Mar 11 02:16:31 2011
@@ -34,9 +34,18 @@ See also README.txt in the solr subdirec
 http://wiki.apache.org/solr/SolrResources for a list of tutorials and
 introductory articles.
 
-NOTE: This Solr example server references SolrCell jars outside of the server
-directory with <lib> statements in the solrconfig.xml.  If you make a copy of
-this example server and wish to use the ExtractingRequestHandler (SolrCell),
+NOTE: This Solr example server references certain Solr jars outside of
+this server directory for non-core modules with <lib> statements in
+solrconfig.xml.  If you make a copy of this example server and wish
+to use the ExtractingRequestHandler (SolrCell), DataImportHandler (DIH),
+UIMA, the clustering component, or other modules in "contrib",
 you will need to copy the required jars into solr/lib or update the paths to
 the jars in your solrconfig.xml.
 
+By default, start.jar starts Solr in Jetty using the default solr home
+directory of "./solr/" -- To run other example configurations, you can
+speciy the solr.solr.home system property when starting jetty...
+
+  java -Dsolr.solr.home=multicore -jar start.jar
+  java -Dsolr.solr.home=example-DIH -jar start.jar
+