01
Dec
The Solr built-in UpdateRequestHandler supports several formats of input data. It delegates the actual data loading to a specific ContentStreamLoader, depending on the content type of the incoming request (i.e. the Content-type header of the HTTP request). Currently, these are the available content types declared in the UpdateRequestHandler class:
application/xml or text/xmlapplication/json or text/jsonapplication/csv or text/csvapplication/javabin
So, a client has several options to send its data to...
Read More