mongoose-hook-ensure-indexes
A mongoose plugin, improving 'Model.ensureIndexes' method, allowing also deletion of unused indexes and reindexing with changed options.
Installation
git clone git@github.com:tarquas/mongoose-hook-ensure-indexes.git mongoose-hook-ensure-indexes
Package
"mongoose-hook-ensure-indexes": "0.1.4"
Usage
Example:
var mongoose = ensureIndexes = PersonSchema; PersonSchema = name: String email: String; PersonSchemaindexname: 1;PersonSchemaindexemail: 1 unique: true; PersonSchema; mongoose;
Notes
-
This plugin must be provided with an exact instance of
mongoose
, where the processing models expected to be processed, inopts
parameter. -
This plugin makes sure that no other indexes persist on MongoDB collection than those, which specified in Schema. New indexes get created. Obsolete indexes get dropped. Indexes with changed options get recreated and rebuilt.