हाँ, अद्वितीय अनुक्रमणिकाएँ अभी भी Mongoose में समर्थित हैं; देखें यहां और यहां वर्तमान दस्तावेज़ों में।
लिंक किए गए दस्तावेज़ों के उदाहरण:
var s = new Schema({ date: { type: Date, index: { unique: true, expires: '1d' }});
var s = new Schema({ name: { type: String, unique: true }});
Schema.path('my.path').index({ unique: true, sparse: true });
Schema.path('name').index({ unique: true });