I wonder if there is a possibility to use the SOLR export request handler with the PHP Solarium library: .html
I can access the results applying the example "http://localhost:8983/solr/core_name/export?q=my-query&sort=severity+desc,timestamp+desc&fl=severity,timestamp,msg" through the browser or curl, but not through the Solarium library as there seem to be no such thing as $client->createExport
Am I missing something?
I also tried $request->setHandler('export')
, following the example from How to use a custom request handler in Solarium, but it is still using the select handler.