Description Usage Arguments Details Value Examples
Get Solr configuration details
1 |
conn |
A solrium connection object, see SolrClient |
name |
(character) The name of the core. If not given, all cores. |
what |
(character) What you want to look at. One of solrconfig or schema. Default: solrconfig |
wt |
(character) One of json (default) or xml. Data type returned.
If json, uses |
raw |
(logical) If |
... |
curl options passed on to crul::HttpClient |
Note that if raw=TRUE
, what
is ignored. That is,
you get all the data when raw=TRUE
.
A list, xml_document
, or character
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 | ## Not run:
# start Solr with Cloud mode via the schemaless eg: bin/solr -e cloud
# you can create a new core like: bin/solr create -c corename
# where <corename> is the name for your core - or creaate as below
# connect
(conn <- SolrClient$new())
# all config settings
conn$config_get("gettingstarted")
# just znodeVersion
conn$config_get("gettingstarted", "znodeVersion")
# just znodeVersion
conn$config_get("gettingstarted", "luceneMatchVersion")
# just updateHandler
conn$config_get("gettingstarted", "updateHandler")
# just updateHandler
conn$config_get("gettingstarted", "requestHandler")
## Get XML
conn$config_get("gettingstarted", wt = "xml")
conn$config_get("gettingstarted", "updateHandler", wt = "xml")
conn$config_get("gettingstarted", "requestHandler", wt = "xml")
## Raw data - what param ignored when raw=TRUE
conn$config_get("gettingstarted", raw = TRUE)
## End(Not run)
|
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.