You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@lucene.apache.org by eh...@apache.org on 2014/11/11 20:15:35 UTC

svn commit: r1638292 - /lucene/cms/branches/solr_6058/content/solr/quickstart.mdtext

Author: ehatcher
Date: Tue Nov 11 19:15:34 2014
New Revision: 1638292

URL: http://svn.apache.org/r1638292
Log:
remove curl commands from the script block

Modified:
    lucene/cms/branches/solr_6058/content/solr/quickstart.mdtext

Modified: lucene/cms/branches/solr_6058/content/solr/quickstart.mdtext
URL: http://svn.apache.org/viewvc/lucene/cms/branches/solr_6058/content/solr/quickstart.mdtext?rev=1638292&r1=1638291&r2=1638292&view=diff
==============================================================================
--- lucene/cms/branches/solr_6058/content/solr/quickstart.mdtext (original)
+++ lucene/cms/branches/solr_6058/content/solr/quickstart.mdtext Tue Nov 11 19:15:34 2014
@@ -517,7 +517,7 @@ If you've run the full set of commands i
 
 Nice work!   The script (see below) to run all of these items took under two minutes! (Your run time may vary, depending on your computer's power and resources available.)
 
-Here's a full Unix script for convenient copying and pasting in order to run all of the commands for this quick start guide:
+Here's a Unix script for convenient copying and pasting in order to run the key commands for this quick start guide:
 
     export CLASSPATH=dist/solr-core-4.10.2.jar
     date ;
@@ -530,13 +530,6 @@ Here's a full Unix script for convenient
       java -Dauto org.apache.solr.util.SimplePostTool example/exampledocs/books.csv ;
       open "http://localhost:8983/solr/#/collection1/plugins/core?entry=searcher" ;
       java -Ddata=args org.apache.solr.util.SimplePostTool "<delete><id>SP2514N</id></delete>" ;
-      curl "http://localhost:8983/solr/collection1/select?q=*:*&wt=json&indent=true" ;
-      curl "http://localhost:8983/solr/collection1/select?wt=json&indent=true&q=foundation" ;
-      curl "http://localhost:8983/solr/collection1/select?wt=json&indent=true&q=foundation&fl=id" ;
-      curl "http://localhost:8983/solr/collection1/select?wt=json&indent=true&q=name:foundation" ;
-      curl "http://localhost:8983/solr/collection1/select?wt=json&indent=true&q=\"CAS+latency\"" ;
-      curl "http://localhost:8983/solr/collection1/select?wt=json&indent=true&q=%2Bone+%2Bthree" ;
-      curl "http://localhost:8983/solr/collection1/select?wt=json&indent=true&q=%2Btwo+-one" ;
       bin/solr healthcheck -c collection1 ;
     date ;