We've currently got a Rails 4 app using MongoDB (v2.4.14) and with Mongoid (5.2.1) as the ODM. I've noticed a problem with our application whereby you search for user say 'Lordon'
User.where(last_name: 'Lordon')
and I expect it to return results containing 'Lordôn' as their last name. I think this behaviour just worked out of the box in MySQL and I've come to expect it.
Is there any configuration to allow for this in either MongoDB or Mongoid without going down the fulltext searching route which is the only solution I've found this morning.
Many thanks.