Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Save maveonair/5512555 to your computer and use it in GitHub Desktop.
Save maveonair/5512555 to your computer and use it in GitHub Desktop.
# 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/collection1/update -H "Content-Type: text/xml" --data-binary '<delete><query>*:*</query></delete>'
# Commit the update
curl http://localhost:8983/solr/collection1/update?commit=true
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment