Description Usage Arguments Value Examples
Set Solr configuration details
1 | config_set(conn, name, set = NULL, unset = NULL, ...)
|
conn |
A solrium connection object, see SolrClient |
name |
(character) The name of the core. If not given, all cores. |
set |
(list) List of key:value pairs of what to set.
Default: |
unset |
(list) One or more character strings of keys to unset.
Default: |
... |
curl options passed on to crul::HttpClient |
A list with response from server
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 | ## 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())
# set a property
conn$config_set("gettingstarted",
set = list(query.filterCache.autowarmCount = 1000))
# unset a property
conn$config_set("gettingstarted", unset = "query.filterCache.size",
verbose = TRUE)
# many properties
conn$config_set("gettingstarted", set = list(
query.filterCache.autowarmCount = 1000,
query.commitWithin.softCommit = 'false'
)
)
## End(Not run)
|
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.