Example:
> db.stuff.save({\"foo\":\"bar\"}); > db.stuff.find({\"foo\":\"bar\"}).count(); 1 > db.stuff.find({\"foo\":\"BAR\"}).count(); 0
For any one using Golang and wishes to have case sensitive full text search with mongodb and the mgo godoc globalsign library.
collation := &mgo.Collation{ Locale: "en", Strength: 2, } err := collection.Find(query).Collation(collation)