janhoy commented on code in PR #822:
URL: https://github.com/apache/solr/pull/822#discussion_r858848208


##########
solr/solr-ref-guide/modules/indexing-guide/pages/indexing-with-tika.adoc:
##########
@@ -77,20 +77,20 @@ For a few examples of how this could be done, see this blog 
post by Erick Ericks
 
 == Trying out Solr Cell
 
-You can try out the Tika framework using the `schemaless` example included in 
Solr.
+You can try out the Tika framework using the `techproducts` example included 
in Solr.
 
-This command will simply start Solr and create a core/collection named 
"gettingstarted" with the `_default` configset.
+This command will simply start Solr and create a core/collection named 
`techproducts` with the `techproducts` configset.
 
 [source,bash]
 ----
-bin/solr -e schemaless
+bin/solr -e techproducts

Review Comment:
   I tested with these two commands, that work:
   ```bash
   bin/solr start -e schemaless -Dsolr.modules=extraction
   curl -X POST -H 'Content-type:application/json'  -d '{
     "add-requesthandler": {
       "name": "/update/extract",
       "class": "solr.extraction.ExtractingRequestHandler",
       "defaults":{ "lowernames": "true", "captureAttr":"true"}
     }
   }' http://localhost:8983/solr/gettingstarted/config
   ```
   
   A benefit to being explicit like this is that users actually learn the two 
facts that they need to add the module to classpath, and add the handler with 
some config....



-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: [email protected]

For queries about this service, please contact Infrastructure at:
[email protected]


---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]

Reply via email to