You are viewing a plain text version of this content. The canonical link for it is here.
Posted to solr-commits@lucene.apache.org by Apache Wiki <wi...@apache.org> on 2012/09/27 22:35:09 UTC

[Solr Wiki] Update of "CoreAdmin" by JesseBuesking

Dear Wiki user,

You have subscribed to a wiki page or wiki category on "Solr Wiki" for change notification.

The "CoreAdmin" page has been changed by JesseBuesking:
http://wiki.apache.org/solr/CoreAdmin?action=diff&rev1=38&rev2=39

Comment:
Adding hostPort

  
  == cores ==
  The `<cores>` tag accepts the following attributes:
+   *'''hostPort''' - The port solr uses to access cores.  For example, you can set hostPort="8080" when working with Tomcat.
    *'''adminPath''' - Relative path to access the !CoreAdminHandler for dynamic core manipulation.  For example, adminPath="/admin/cores" configures access via http://localhost:8983/solr/admin/cores.  If this attribute is not specified, dynamic manipulation is unavailable.
    ** <!> [[Solr1.4]] '''defaultCoreName''' - The name of a core that will be used for requests that don't specify a core.  If you have one core and want to use the features specified on this page, then this provides a way to keep your URLs the same.
    ** <!> [[Solr1.4]] '''shareSchema''' - The value can be 'true' or 'false'. This ensures that the multiple cores pointing to the same schema.xml will be referring to the same !IndexSchema Object. This makes loading the core faster. Ensure that no core specific property is used in your schema.xml.