Hi there, I was looking at the solr documentation for indexing multiple documents via json and noticed inconsistency in the docs.
Should the POST url be /update/*json/docs *instead of just /update. It does look like former does work, unless both will work just fine? https://lucene.apache.org/solr/guide/7_3/uploading-data-with-index-handlers.html#adding-multiple-json-documents Adding Multiple JSON Documents <https://lucene.apache.org/solr/guide/7_3/uploading-data-with-index-handlers.html#adding-multiple-json-documents> Adding multiple documents at one time via JSON can be done via a JSON Array of JSON Objects, where each object represents a document: curl -X POST -H 'Content-Type: application/json' 'http://localhost:8983/solr/my_collection/*update*' --data-binary '[ { "id": "1", "title": "Doc 1" }, { "id": "2", "title": "Doc 2" }]'