MongoDB - is it good to soft delete stuff like users, their content or doing HARD delete improves performance?
Stuff like for example user created a question in a community. When he presses delete, should we .remove() the document or just update the isDelete status?
What are the benefits of either approach?