Currently i am using mongoose Model.remove method to remove a document. But after removing document mongoosastic index still contains deleted document index.
User.remove({_id:userId}, function(err) {
if (err) {
res.json({success:false});
}
else {
res.json({success:true})
}
});
Based on this section in mongoosastic documentation:
User.remove({_id: userId})
does not trigger mongoosastic unindex.Instead you can easily find the user and call
.remove()
on it. Here is how it'll look like: