Welcome to Codidact Meta!
Codidact Meta is the meta-discussion site for the Codidact community network and the Codidact software. Whether you have bug reports or feature requests, support questions or rule discussions that touch the whole network – this is the site for you.
What gets on Hot Posts?
What actually gets a post on the Hot Posts list? Is it views? Votes? Answers? Comments? Most likely a combination of them, but what exactly?
1 answer
The code for the hot post selection can be found in the app/controllers/application_controller.rb file (search for hot_questions).
Eligible for Hot Posts are all Questions or Articles that
- have any activity in the last seven days,
- are in an eligible category (can be changed per-category) and
- have a score over a per-community score threshold
Sorted by descending score. The maximal number of top posts (number configurable per-community) are chosen for the board.
And about the specific post you mentioned: There was recent activity, namely the deletion of one answer by its author, which is apparently enough to trigger "activity in the last seven days".
0 comment threads