what is the difference between populate and findById in performance? which one is faster?
Example
findById:
const comment = await Comment.findById(commentId);
const user = await User.findById(comment.userId);
populate:
const comment = await Comment.findById(commentId).populate('userId');