RE: Modifying fl in QParser

2016-09-01 Thread Beale, Jim (US-KOP)
day, August 31, 2016 12:42 AM To: solr-user@lucene.apache.org Subject: Re: Modifying fl in QParser We are dealing with same thing, we have overridden QueryComponent (type of SearchComponent) and added a field to retrieve there. That same field we are setting in SolrParams from query request. Accord

Re: Modifying fl in QParser

2016-08-30 Thread Erik Hatcher
And it's not necessary to override QueryComponent to set params. I think I'd add a first-params SearchComponent, so you're decoupling and plugging in extra behavior rather than overriding kinda the heart of Solr. Erik > On Aug 30, 2016, at 21:42, Rohit Kanchan wrote: > > We are deal

Re: Modifying fl in QParser

2016-08-30 Thread Rohit Kanchan
We are dealing with same thing, we have overridden QueryComponent (type of SearchComponent) and added a field to retrieve there. That same field we are setting in SolrParams from query request. According to your business you need to figure out how you can override QueryComponent. I hope this helps

Re: Modifying fl in QParser

2016-08-30 Thread Erik Hatcher
Personally, I don’t think a QParser(Plugin) is the right place to modify other parameters, only to create a Query object. A QParser could be invoked from an fq, not just a q, and will get invoked on multiple nodes in SolrCloud, for example - this is why I think it’s not a good idea to do anyth

RE: Modifying fl in QParser

2016-08-30 Thread Alexandre Rafalovitch
Your question is too dense. I, for one, have trouble parsing it, no pun intended. Could you expand it a little bit with business level problem, what you are trying to achieve and what specifically is not working. P.s. Also, many of us are in a different timezone from you and expecting a response

RE: Modifying fl in QParser

2016-08-30 Thread Beale, Jim (US-KOP)
Anyone?? From: Beale, Jim (US-KOP) [mailto:jim.be...@hibu.com] Sent: Tuesday, August 09, 2016 1:23 PM To: solr-user@lucene.apache.org Subject: Modifying fl in QParser Hi, Is it possible to modify the SolrParam, fl, to append selected dynamic fields, while rewriting a query in QParser.parse()?