Description Usage Arguments Examples
View source: R/collection_deletealias.R
Delete a collection alias
1 | collection_deletealias(conn, alias, raw = FALSE, callopts = list())
|
conn |
A solrium connection object, see SolrClient |
alias |
(character) Required. The alias name to be created |
raw |
(logical) If |
callopts |
curl options passed on to crul::HttpClient |
1 2 3 4 5 6 7 8 9 10 11 12 13 | ## Not run:
(conn <- SolrClient$new())
if (!conn$collection_exists("thingsstuff")) {
conn$collection_create(name = "thingsstuff")
}
conn$collection_createalias("tstuff", "thingsstuff")
conn$collection_clusterstatus()$cluster$collections$thingsstuff$aliases # new alias
conn$collection_deletealias("tstuff")
conn$collection_clusterstatus()$cluster$collections$thingsstuff$aliases # gone
## End(Not run)
|
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.