You are viewing a plain text version of this content. The canonical link for it is here.
Posted to solr-commits@lucene.apache.org by Apache Wiki <wi...@apache.org> on 2009/10/22 00:39:42 UTC

[Solr Wiki] Trivial Update of "FunctionQuery" by YonikSeeley

Dear Wiki user,

You have subscribed to a wiki page or wiki category on "Solr Wiki" for change notification.

The "FunctionQuery" page has been changed by YonikSeeley.
The comment on this change is: localparams page explains specifying a value via "v".
http://wiki.apache.org/solr/FunctionQuery?action=diff&rev1=27&rev2=28

--------------------------------------------------

  <!> [[Solr1.4]]
  query(subquery, default) returns the score for the given subquery, or the default value for documents not matching the query.  Any type of subquery is supported through either parameter dereferencing {{{$otherparam}}} or direct specification of the query string in the LocalParams via "v".
  
- /!\ :TODO: /!\ need to define "via v"
- 
      Example Syntax: '''q=product(popularity, query({!dismax v='solr rocks'})''' returns the product of the popularity and the score of the dismax query.
     
      Example Syntax: '''q=product(popularity, query($qq))&qq={!dismax}solr rocks''' is equivalent to the previous query, using param dereferencing.