What\'s the most simple way to cause a SOLR installation to commit all pending docs?
(There\'s no obvious way in the admin interface. There\'s a script called \'comm
THIS HOLDS FOR SOLR VERSIONS < 5.0
Try [solr url]/update?commit=true
[solr url]/update?commit=true
For example, with an URL like the SOLR example defaults, from the same machine, http://localhost:8983/solr/update?commit=true should do it.
http://localhost:8983/solr/update?commit=true
FOR SOLR VERSIONS >= 5.0 http://localhost:8983/solr/[collection_name]/update?commit=true