I\'m doing some searching of tags, and some users like \"cat\" while others like \"Cat\" Go figure...
Anyways, is there a way to force a particular find to be case sens
You can make all strings case sensitive when you create the table by adding "COLLATE utf8_bin" to the :options string when creating the table. For example:
create_table( "page_infos", :force => true, :options => "ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE utf8_bin") do |t|
t.string "title", :limit => 120
end