Re: Using a sum of fields in a filter query

2012-09-04 Thread Chris Hostetter
: The piece I was also missing as well was to add: : a) the FunctionQParserPlugin is already registered by default using hte name "func" -- you shouldn't need to register it explicitly unless you want to use it with a custom name. b) the FunctionQParserPlugin is not even required in order to

Re: Using a sum of fields in a filter query

2012-09-04 Thread Mark Mandel
Thanks! The piece I was also missing as well was to add: To my solrconfig.xml. Once I did that, it all worked perfectly! Much appreciated! Mark On Tue, Sep 4, 2012 at 5:25 PM, Rafał Kuć wrote: > Hello! > > Try something like > > fq={!frange l=0 u=100}sum(fielda, fieldb, fieldc) > > -- >