extended-search

How to do attribute matching in (thinking) sphinx extended2 mode?

I have this expression which is working as expected in Thinking Sphinx: Customer.search :with => {:signer_id => 23} but I need to write an expression with OR of some attributes, like signer_id is 23 or admin_level is 42, so I moved to extended match mode and wrote this: Customer.search "@signer_id 23", :match_mode => :extended2 whi...