vote up 0 vote down star

Suppose the Field is called "x",

so that when searched,those with Field "x" value matching the query is displayed first,

together with those whose content matches the query?

Currently I can only query a certain field by searching x:value,

otherwise it won't take effect at all.

How can I make Field "x" be searched when directly searching a value,

which is processed by "Query.parse(queryString, queryLang, nutchConf);"

flag

40% accept rate

1 Answer

vote up 0 vote down

If you're running your query against a Solr index, use the qf param to query multiple fields and the boost clause to score the relevancy of one field higher than another.

From Solr Relevancy FAQ...

How can I search for "superman" in both the title and subject fields The standard request handler uses SolrQuerySyntax for q:

q=title:superman subject:superman

Using the dismax request handler, specify the query fields using the qf param.

q=superman&qf=title subject

How can I make "superman" in the title field score higher than in the subject field For the standard request handler, "boost" the clause on the title field:

q=title:superman^2 subject:superman

Using the dismax request handler, one can specify boosts on fields in parameters such as qf:

q=superman&qf=title^2 subject

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.