From 3afc885c84c7f12610a1889657e4261dea56f01a Mon Sep 17 00:00:00 2001 From: Dessalines Date: Wed, 13 Dec 2023 10:05:59 -0500 Subject: [PATCH] Adding voting as active. (#288) --- src/contributors/07-ranking-algo.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/contributors/07-ranking-algo.md b/src/contributors/07-ranking-algo.md index 3113b05..cd9a396 100644 --- a/src/contributors/07-ranking-algo.md +++ b/src/contributors/07-ranking-algo.md @@ -27,7 +27,7 @@ Scaled_Rank = Rank / log(2 + Users_Active_Month) Score = Upvotes - Downvotes Time = time since submission (in hours) Gravity = Decay gravity, 1.8 is default -Users_Active_Month = The number of users in a given community who have posted / commented in the last month. +Users_Active_Month = The number of users in a given community who have posted / commented / voted in the last month. ``` - Lemmy uses the same `Rank` algorithm above, in three sorts: `Active`, `Hot`, and `Scaled`. @@ -47,4 +47,4 @@ A plot of rank over 24 hours, of scores of 1, 5, 10, 100, 1000, with a scale fac Lemmy also shows counts of _active users_ for your site, and its communities. These are counted within the last `day`, `week`, `month`, and `half year`, and are cached on starting up lemmy, and every hour. -An active user is someone who has posted or commented on our instance or community within the last given time frame. For site counts, only local users are counted. For community counts, federated users are included. +An active user is someone who has posted, commented, or voted on our instance or community within the last given time frame. For site counts, only local users are counted. For community counts, federated users are included.