Dear Wiki user, You have subscribed to a wiki page or wiki category on "Solr Wiki" for change notification.
The following page has been changed by HossMan: http://wiki.apache.org/solr/CoreAdmin The comment on the change is: more about SWAP, and reorder other cmds to mimic lifecyle ------------------------------------------------------------------------------ Note that config & schema parameters are optional. - == LOAD == - - /!\ '''not implemented yet!''' - - This will load a new core from an existing configuration (will be implemented when cores can be described with a lazy-load flag). - - ?persist=true will save the changes to solr.xml - - http://localhost:8983/solr/admin/cores?action=LOAD&core=core0 - - == UNLOAD == - - Removes a core from solr. Existing requests will continue to be processed, but no new - requests can be sent to this core by the name. If a core is registered under more than one name, only that specific mapping is removed. - - http://localhost:8983/solr/admin/cores?action=UNLOAD&core=core0 - == RELOAD == Load a new core from the same configuration as an existing registered core. While the @@ -142, +125 @@ be unloaded. http://localhost:8983/solr/admin/cores?action=RELOAD&core=core0 - == RENAME == @@ -158, +140 @@ == SWAP == - Change the names used to access a core. + Atomically swaps the names used to access two existing cores. This can be useful for replacing a "live" core with an "ondeck" core, and keeping the old "live" core running in case you decide to roll-back. http://localhost:8983/solr/admin/cores?action=SWAP&core=core1&other=core0 + == UNLOAD == + + Removes a core from solr. Existing requests will continue to be processed, but no new + requests can be sent to this core by the name. If a core is registered under more than one name, only that specific mapping is removed. + + http://localhost:8983/solr/admin/cores?action=UNLOAD&core=core0 + + == LOAD == + + /!\ '''not implemented yet!''' + + This will load a new core from an existing configuration (will be implemented when cores can be described with a lazy-load flag). + + ?persist=true will save the changes to solr.xml + + http://localhost:8983/solr/admin/cores?action=LOAD&core=core0 +
