Cores/collections management

Installation

Stable version from CRAN

install.packages("solrium")

Or the development version from GitHub

install.packages("devtools")
devtools::install_github("ropensci/solrium")

Load

library("solrium")

Initialize connection

solr_connect()
#> <solr_connection>
#>   url:    http://localhost:8983
#>   errors: simple
#>   verbose: TRUE
#>   proxy:

Cores

There are many operations you can do on cores, including:

Create a core

core_create()

Delete a core

core_unload()

Collections

There are many operations you can do on collections, including:

Create a collection

collection_create()

Delete a collection

collection_delete()