Sep
22
Easy way to do a Solr Core Reload
Many times have I stopped and restarted Solr to reload a core, yes it is kind of a rookie way as you can always go to the Admin UI, Core Admin and reload Core.
But what if you wanted to have a really fast way of reloading your core?
Just do it via the admin handler!
http://{SOLR IP}:{SOLR PORT}/solr/admin/cores?action=RELOAD&core={CORE NAME}
You can even add it to your code and make a simple call or better yet use SolrNet via the admin functionality found below:
https://github.com/mausch/SolrNet/blob/master/Documentation/Core-admin.md