Skip to content

Instantly share code, notes, and snippets.

View calufa's full-sized avatar

Carlos calufa

View GitHub Profile
@calufa
calufa / Delete Solr 3.x Indexes
Last active August 29, 2015 14:01
Delete Solr 3.x Indexes
# http://wiki.apache.org/solr/FAQ#How_can_I_delete_all_documents_from_my_index.3F
# http://wiki.apache.org/solr/UpdateXmlMessages#Updating_a_Data_Record_via_curl
curl http://localhost:8983/solr/some-index/update?commit=true -H "Content-Type: text/xml" --data-binary '<delete><query>*:*</query></delete>'