Ping a Solr instance
Ping a Solr instance
ping(conn, name, wt = "json", raw = FALSE, ...)
conn |
A solrium connection object, see SolrClient |
name |
(character) Name of a collection or core. Required. |
wt |
(character) One of json (default) or xml. If json, uses
[xml2::read_xml)]: R:xml2::read_xml) |
raw |
(logical) If |
... |
curl options passed on to crul::HttpClient |
You likely may not be able to run this function against many public Solr services as they hopefully don't expose their admin interface to the public, but works locally.
if wt="xml"
an object of class xml_document
, if
wt="json"
an object of class list
## Not run: # start Solr, in your CLI, run: `bin/solr start -e cloud -noprompt` # after that, if you haven't run `bin/post -c gettingstarted docs/` yet, # do so # connect: by default we connect to localhost, port 8983 (cli <- SolrClient$new()) # ping the gettingstarted index cli$ping("gettingstarted") ping(cli, "gettingstarted") ping(cli, "gettingstarted", wt = "xml") ping(cli, "gettingstarted", verbose = FALSE) ping(cli, "gettingstarted", raw = TRUE) ping(cli, "gettingstarted", wt="xml", verbose = TRUE) ## End(Not run)
Please choose more modern alternatives, such as Google Chrome or Mozilla Firefox.