private void deleteAll() {
SolrOperations template;
try {
template = createSolrTemplate();
template.delete(new SimpleQuery(new SimpleStringCriteria("*:*")));
template.commit();
} catch (IOException e) {
throw new RuntimeException(e);
} catch (ParserConfigurationException e) {
throw new RuntimeException(e);
} catch (SAXException e) {