Dear Wiki user, You have subscribed to a wiki page or wiki category on "Solr Wiki" for change notification.
The "SolrCloud" page has been changed by Mark Miller: http://wiki.apache.org/solr/SolrCloud?action=diff&rev1=70&rev2=71 The collections API let's you manage collections. Under the hood, it generally uses the CoreAdmin API to manage SolrCores on each server - it's essentially sugar for actions that you could handle yourself if you made individual CoreAdmin API calls to each server you wanted an action to take place on. Create - http://localhost:8983/solr/admin/collections?action=CREATE&name=mycollection&numShards=3&numReplicas=4 + http://localhost:8983/solr/admin/collections?action=CREATE&name=mycollection&numShards=3&replicationFactor=4 Delete http://localhost:8983/solr/admin/collections?action=DELETE&name=mycollection
