Hi I have a core definition in solr.xml which looks like the following:
<core instanceDir="cores/major" name="MajorIndex"> <property name="language" value="English" /> </core> If I instead want to create this core with a CREATE command, how do I also supply a property - like "language" in the above? For example, some sort of request: http://localhost:8080/solr/admin/cores?action=CREATE&name=MajorIndex&instanceDir=cores/major&property=??? Thanks!