How to remove documents from a capped collection in MongoDB
You can’t remove one or all documents from a capped collection in MongoDB. BUT! you can drop the collection!
Execute the following command:
db.getCollection('myCollection').drop()
The result for me is:
true
There you go, quick and easy.
Sources: