Using QParser solved the problem.
Many thanks, best regards and a nice start in the week,
--
Moritz Schmidt
Am 01.03.19, 11:25 schrieb "Mikhail Khludnev" :
Just a guess
QueryParser might be a Lucene class, which isn;t aware of Solr scheme and
hence might not properly convert term t
Just a guess
QueryParser might be a Lucene class, which isn;t aware of Solr scheme and
hence might not properly convert term to number or point "product_type:106"
Check the particular query with Solr fq, then use QParser for parsing. See
QueryComponent as a sample.
On Fri, Mar 1, 2019 at 12:59 PM
Hi there,
I’m working on a custom SearchComponent to add some docs to the response with
another filter query than in the original request.
Here is what I currently have:
public void process(ResponseBuilder rb) throws IOException {
if(rb.getResults() != null) {
QueryParser queryParser =