If you want to filter a boolean, it is much better to have it as an attribute in Sphinx instead of a field. Fields are text data that people will search for, attributes are what you, as a developer, order and filter.
So, to configure this boolean column as an attribute:
define_index do
And then filtering:
Model.search 'foo', :with => {:car_active => true}
source share