I\'m trying to create a capped collection using Mongoose, however the following creates a collection that is not capped:
new Schema({..}, { capped: { size: 1024, max: 1000, autoIndexId: true } });