mirror of
https://github.com/LemmyNet/lemmy
synced 2024-10-30 15:21:20 +00:00
c11e9446c6
* Fix hot_rank algorithm pushing downvoted content off the feed. - Max hot_rank algorithm now uses max(2, score) rather than greatest(1, score + 3) - Fixes #4084 * Fixing SQL format. * Adding 2 to bias the positive scores.
20 lines
658 B
PL/PgSQL
20 lines
658 B
PL/PgSQL
CREATE OR REPLACE FUNCTION hot_rank (score numeric, published timestamp with time zone)
|
|
RETURNS float
|
|
AS $$
|
|
DECLARE
|
|
hours_diff numeric := EXTRACT(EPOCH FROM (now() - published)) / 3600;
|
|
BEGIN
|
|
-- 24 * 7 = 168, so after a week, it will default to 0.
|
|
IF (hours_diff > 0 AND hours_diff < 168) THEN
|
|
RETURN log(greatest (1, score + 3)) / power((hours_diff + 2), 1.8);
|
|
ELSE
|
|
-- if the post is from the future, set hot score to 0. otherwise you can game the post to
|
|
-- always be on top even with only 1 vote by setting it to the future
|
|
RETURN 0.0;
|
|
END IF;
|
|
END;
|
|
$$
|
|
LANGUAGE plpgsql
|
|
IMMUTABLE PARALLEL SAFE;
|
|
|