I am on my first experience with noSQL databases, using mongodb. I am using Ruby-2.2.2 with Rails-3.2.22 and mongoid-3.17
I've seen that the Mongoid automatically includes an _id field in the models.
BUT,
Do I need to manually create an index for this field or it is automatically created as it happens with ActiveRecord in relational databases?
How can I see the list of indexes that exists for each model?