core_unload {solrium} | R Documentation |
Unload (delete) a core
Description
Unload (delete) a core
Usage
core_unload(
conn,
name,
deleteIndex = FALSE,
deleteDataDir = FALSE,
deleteInstanceDir = FALSE,
async = NULL,
raw = FALSE,
callopts = list()
)
Arguments
conn |
A solrium connection object, see SolrClient |
name |
(character) The name of the core to be created. Required |
deleteIndex |
(logical) If |
deleteDataDir |
(logical) If |
deleteInstanceDir |
(logical) If |
async |
(character) Request ID to track this action which will be processed asynchronously |
raw |
(logical) If |
callopts |
curl options passed on to crul::HttpClient |
Examples
## Not run:
# start Solr with Schemaless mode via the schemaless eg:
# bin/solr start -e schemaless
# connect
(conn <- SolrClient$new())
# Create a core
conn$core_create(name = "books")
# Unload a core
conn$core_unload(name = "books")
## not found
# conn$core_unload(name = "books")
# > Error: 400 - Cannot unload non-existent core [books]
## End(Not run)
[Package solrium version 1.2.0 Index]