Building queries by hand - outoftime/sunspot GitHub Wiki

While we wait for official documentation on this, here's an option that will work:

Post.search do
  adjust_solr_params do |params|
    params[:q] = "{!lucene q.op=AND df=title} bob"
  end
end