What is the best way to drop a collection in MongoDB?
I am using the following:
db.collection.drop()
As described in the manual:
To drop a collection 'users' of database 'mydb':
$ use mydb $ db.users.drop()