Is it possible to perform a simple "OR" search in thinking-sphinx? here is a small example in pseudocode.
define_index do
...
has :attr_a, :attr_b
end
Object.search @q, :conditions => {...some cond...}, :with => {:attr_a => value_a OR :attr_b => value_b}
Thanks