mirror of
https://github.com/LemmyNet/lemmy-docs.git
synced 2024-11-01 10:09:54 +00:00
Adding active user counts description.
This commit is contained in:
parent
3d887b9953
commit
797a77b521
1 changed files with 9 additions and 0 deletions
|
@ -1,5 +1,7 @@
|
||||||
# Trending / Hot / Best Sorting algorithm
|
# Trending / Hot / Best Sorting algorithm
|
||||||
|
|
||||||
## Goals
|
## Goals
|
||||||
|
|
||||||
- During the day, new posts and comments should be near the top, so they can be voted on.
|
- During the day, new posts and comments should be near the top, so they can be voted on.
|
||||||
- After a day or so, the time factor should go away.
|
- After a day or so, the time factor should go away.
|
||||||
- Use a log scale, since votes tend to snowball, and so the first 10 votes are just as important as the next hundred.
|
- Use a log scale, since votes tend to snowball, and so the first 10 votes are just as important as the next hundred.
|
||||||
|
@ -7,6 +9,7 @@
|
||||||
## Implementations
|
## Implementations
|
||||||
|
|
||||||
### Reddit
|
### Reddit
|
||||||
|
|
||||||
Does not take the lifetime of the thread into account, [giving early comments an overwhelming advantage over later ones,](https://minimaxir.com/2016/11/first-comment/) with the effect being even worse in small communities. New comments pool at the bottom of the thread, effectively killing off discussion and making each thread a race to comment early. This lowers the quality of conversation and rewards comments that are repetitive and spammy.
|
Does not take the lifetime of the thread into account, [giving early comments an overwhelming advantage over later ones,](https://minimaxir.com/2016/11/first-comment/) with the effect being even worse in small communities. New comments pool at the bottom of the thread, effectively killing off discussion and making each thread a race to comment early. This lowers the quality of conversation and rewards comments that are repetitive and spammy.
|
||||||
|
|
||||||
### Hacker News
|
### Hacker News
|
||||||
|
@ -35,3 +38,9 @@ Gravity = Decay gravity, 1.8 is default
|
||||||
A plot of rank over 24 hours, of scores of 1, 5, 10, 100, 1000, with a scale factor of 10k.
|
A plot of rank over 24 hours, of scores of 1, 5, 10, 100, 1000, with a scale factor of 10k.
|
||||||
|
|
||||||
![](rank_algorithm.png)
|
![](rank_algorithm.png)
|
||||||
|
|
||||||
|
#### Active User counts
|
||||||
|
|
||||||
|
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.
|
||||||
|
|
Loading…
Reference in a new issue