ForumThread.find(conditions).populate('from').populate('info').populate({path:'comments',options:{limit:5},select:'from to created content'}).exec(function(err,docs){
ForumThread.find(conditions).populate('from').populate('info').populate({path:'tag'}).populate({path:'comments',options:{limit:5},select:'from to created content'}).limit(limit).skip(skip).sort('-top created').exec(function(err,docs){
ForumThread.find(conditions).populate('from').populate('info').populate({path:'tag'}).populate({path:'comments',options:{limit:5,sort:'-created'},select:'from to created content'}).limit(limit).skip(skip).sort('-top created').exec(function(err,docs){