: It seems to me that there is no way how I can use dismax handler for
: searching in both tokenized and untokenized fields while I'm searching for a
: phrase.

The typical way of dealing with this is to put the untokenized fields 
in the "pf" param and have copyFields that create varients of those 
fields using some simple tokenization and put those in the qf...

: I'm using dismax to search in both of them at the same time:
: "defType=dismax&qf=product_name product_name_un^2.0". (this is done to bring
: on top of the results the products which name _equals_ the entered
: criteria).

...this actually sounds like the exact use cose for why pf was added ... 
since product_name_un is an exact copy of product_name just with differnet 
tokenization you don't need both in the qf ... move product_name_un to the 
pf.

if you find that matches too loosely (ie: too many documents) then just 
tighten up the mm.


-Hoss

Reply via email to