[ 
https://issues.apache.org/jira/browse/SOLR-405?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=12621045#action_12621045
 ] 

Otis Gospodnetic commented on SOLR-405:
---------------------------------------

Yonik is right, but I think it would still be nice to allow field:XXX + DisMax 
combinations *and* have the field:XXX influence relevancy score.

Hoss example seems to assume the searching is always done by people (hence the 
possible need to hide some fields).  But many times Solr is searched 
"programmatically" by other apps (while humans sleep), so there is no need to 
hide.

Now that query parsers are pluggable, I wonder if we could have a custom QP 
that allows this... Doug?


> Search additional fields when using DisMaxRequestHandler
> --------------------------------------------------------
>
>                 Key: SOLR-405
>                 URL: https://issues.apache.org/jira/browse/SOLR-405
>             Project: Solr
>          Issue Type: Improvement
>          Components: search
>            Reporter: Doug Steigerwald
>         Attachments: dismax_additional_fields.patch
>
>
> We are heavily leaning towards using a few DisMaxRequestHandlers for 
> searching instead of copy fields, but we ran into an issue.  Currently our 
> sites use something like a copy field to search stories, but they also need 
> to search additional fields (like story_source, which we don't want in the 
> dismax).  With the DisMaxRequestHandler as it is, anything you have in the q 
> param is searched for in the fields defined in the DisMaxRequestHandler.  We 
> need a little more flexibility with this.
> As an example, if you search for something like 
> "bush+AND+story_source:associated", all the fields in the dismax are searched 
> for 'bush' and 'story_source:associated'. (The story_source field is not in 
> the dismax handler, and we don't want it to be.)  What we want to do is 
> search the fields defined in the dismax for 'bush', but also query the 
> story_source field (and only the story_source field) for 'associated'.
> We came up with this small patch to let us do what we need, but wanted to 
> throw it out there in case others were interested, or know of a better way to 
> do this.  We're not entirely sure we did this in the right place and are 
> hoping that  maybe someone can provide some insight on that as well.

-- 
This message is automatically generated by JIRA.
-
You can reply to this email to add a comment to the issue online.

Reply via email to