Answers for "(node:9060) DeprecationWarning: collection.ensureIndex is deprecated. Use createIndexes instead."

11

collection.ensureIndex is deprecated

mongoose.connect(dbURI, {
    useNewUrlParser: true,
    useUnifiedTopology: true,
    useCreateIndex: true,
    useFindAndModify: true,
})
Posted by: Guest on December-01-2020
11

(node:3168) DeprecationWarning: collection.ensureIndex is deprecated. Use createIndexes instead. (Use `node --trace-deprecation ...` to show where the warning was created)

mongoose.set('useCreateIndex', true);
Posted by: Guest on June-08-2020

Code answers related to "(node:9060) DeprecationWarning: collection.ensureIndex is deprecated. Use createIndexes instead."

Code answers related to "Javascript"

Browse Popular Code Answers by Language