is there a way to mention 'quorum' matching in TS ? for example:

field1 have these words : "one two three"
field2 have these words : "four five six"

and my search query is something like this
Item .search "@(field1,field2) (one two FIFTY)", :match_mode
=> :extended.  This  will return empty result set because "FIFTY" is
not present.

This syntax is not helping either : Item .search "@(field1,field2)
(one two FIFTY)/2", :match_mode => :extended

I can solve it by using this  "@(field1,field2) (one|two|
FIFTY)", :match_mode => :extended - but won't give the best results.

basically i want to fetch all documents if atleaset two words matches
in the above example for my website http://www.gettherating.com

tx


-- 
You received this message because you are subscribed to the Google Groups 
"Thinking Sphinx" group.
To post to this group, send email to [email protected].
To unsubscribe from this group, send email to 
[email protected].
For more options, visit this group at 
http://groups.google.com/group/thinking-sphinx?hl=en.

Reply via email to