Comment on Why do comment counts often disagree with what I see?
the_dopamine_fiend@lemmy.world 1 year ago
Are you and OP on the same instance? If not, the phantom comment could be from an instance federated with theirs but not yours.
Comment on Why do comment counts often disagree with what I see?
the_dopamine_fiend@lemmy.world 1 year ago
Are you and OP on the same instance? If not, the phantom comment could be from an instance federated with theirs but not yours.
athlon@lemm.ee 1 year ago
I accidentally made a post that has -3 comments.
This happens because Lemmy does not count the actual number of comments that there are under the post, but instead there is a counter per post. This is not necessarily a bad thing, but it does not seem like the counter is every synced with the actual count of comments.
Mr_Buscemi@lemmy.blahaj.zone 1 year ago
I think I noticed that if a commenter deleted their comment then the total comments would go down by 1. On a post with only one comment that also got deleted, it made it show as -1 comments.
PeleSpirit@lemmy.world 1 year ago
What does counter per post mean?
Also, I always thought that was because they have to “call home” to get updated and there’s time in between.
athlon@lemm.ee 1 year ago
Ok, so basically, there is multiple ways one could comment count. The most obvious option is to count the actual number of comments under the post. This might be in practice slow, as you must load all comments under the post. An alternative approach is to have a count variable for post, which is increased or decreased by 1 if post is added/removed. It’s way faster to retrieve that variable, instead of getting all comments and counting the number of them. The problem starts if some anomaly happens that is not accounted for, so for example, if I request the same comment to be deleted multiple times. So that counter can be decreased more than once for the same comment. This could be fixed pretty easily:
And yeah, I thought so too, but ever since I stumbled upon this bug, I think the way the comment count is stored is through the counter variable.
PeleSpirit@lemmy.world 1 year ago
I’m sorry, I’m not really understanding since I’m not techy. Are you saying it counts how many are added or removed, not the total amount? I don’t understand the difference or why that would be easier to pull info from.
baronvonj@lemmy.world 1 year ago
I had also read that editing a comment increases the comment count on a post.