Owens, Martin wrote:
Hello everyone,
I'm looking for a better solution that the current xml output we're currently
getting; if you return more than 70k records the webserver can no longer cope
with parsing the xml and the machine falls over out of memory.
Ideally what we'd like is for the search results to go directly into a
temporary mysql table so we can link against it in a further request from the
web server. Does anyone know any plugs or people who have done anything along
these lines?
"out of the box" solr does not do that...
maybe try a custom RequestHandler that extends StandarRequestHandler.
let the base handler to everything, then in handleRequestBody, pull the
results out of the response and use JDBC to fill your SQL tables.
otherwise try paging through the results... 70*1K results or something
like that...
ryan