Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save debraj-manna/ff914a6e6b9f94611693 to your computer and use it in GitHub Desktop.
Save debraj-manna/ff914a6e6b9f94611693 to your computer and use it in GitHub Desktop.
Delete all documents in a Solr index using curl
curl http://localhost:8983/solr/discovery/update --data '<delete><query>*:*</query></delete>' -H 'Content-type:text/xml; charset=utf-8'
curl http://localhost:8983/solr/discovery/update --data '<commit/>' -H 'Content-type:text/xml; charset=utf-8'
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment