We are just staring with Solr and have a multi core implementation and need to delete all the rows in the index to clean things up.
When running an update via a url we are using something like the following which works fine: http://localhost:8983/solr/template/update/csv?commit=true&escape=\&stream.file=/opt/TEMPLATE_DATA.csv Not clear on how to delete all the rows in this index. The documentation gives this example: <delete><query>timestamp:[* TO NOW-12HOUR]</query></delete> I'm not clear on the context of this command - is this through the Solr admin or can you run this via the restful call? Trying to add this to a restful call does not work like this attempt: http://localhost:8983/solr/template/<delete><query>timestamp:[* TO NOW-12HOUR]</query></delete> Any thoughts appreciated. Bob