On a project I'm working on we interact with Solr using SolrNet. We have a custom search component in solr, activated by adding join=true to the query. (I do this in solrnet through the ExtraParams of the CommonQueryOptions).
In the response there is a custom <lst name="joinresult"> after the normal results which I want to parse, and return to the caller.
Now I don't know where I can cleanly insert a custom ResponseParser in the SolrNet pipeline.
What have I done so far:
- Created a
JoinResult<T>class to hold my custom result - Created a
JoinQueryResults<T> : SolrQueryResult<T>with aIList<JoinResult<T>> JoinResultproperty. - Created a
IJoinResponseParser<T> : ISolrResponseParser<T>interface - Created a
JoinResponseParser<T> : IJoinResponseParser<T>to parse the custom list result into theJoinQueryResults.JoinResultproperty.
The next step was to plug all these classes in the right places, and use SolrQueryExecuter<T>.Execute to do the rest of the heavy lifting. But this will always return a SolrQueryResult, not my custom result.
Does anybody have any idea what I need to to support my scenario?
EDIT:
What I've got so far is the following:
- Derive from
SolrQueryExecuter<T>and add aExecuteJoin(q,options)method which returns aJoinQueryResults<T>.
This works, but it doesn't really feel 'right'. My Execute method is a copy of the normal Execute method with only one essential change: I replaced new SolrQueryResults with new JoinQueryResults.
Reading the SolrNet code I couldn't find any other 'easy' way, so I'm keeping this approach for now.