this post was submitted on 18 Aug 2024
814 points (97.9% liked)

Fediverse

28380 readers
1399 users here now

A community to talk about the Fediverse and all it's related services using ActivityPub (Mastodon, Lemmy, KBin, etc).

If you wanted to get help with moderating your own community then head over to !moderators@lemmy.world!

Rules

Learn more at these websites: Join The Fediverse Wiki, Fediverse.info, Wikipedia Page, The Federation Info (Stats), FediDB (Stats), Sub Rehab (Reddit Migration), Search Lemmy

founded 1 year ago
MODERATORS
 

Probably better to post in the github issue rather than replying here.

https://github.com/LemmyNet/lemmy/issues/4967

you are viewing a single comment's thread
view the rest of the comments
[–] SorteKanin@feddit.dk 11 points 2 months ago (2 children)

This would require aggregating vote counts for every single user separately. I think that is simply computationally infeasible.

[–] subignition@fedia.io 6 points 2 months ago (1 children)

You could do something like send a list of user IDs who voted, and have the client do the filtering locally with its blocklist. It would consume more bandwidth instead of computational power but probably wouldn't scale very well

[–] SorteKanin@feddit.dk 4 points 2 months ago (1 children)

Well you could do something like that but it wouldn't affect sorting of the posts then. If you have blocked an instance and that instance has upvoted a post to 1000 votes so that it appears on the top of the All-feed, you'd see it at the top with 0 votes (or only the votes from the instances you haven't blocked), which would be very strange.

[–] subignition@fedia.io 2 points 2 months ago (1 children)

Would the client not be able to sort the received posts after filtering? Granted things could be fairly inconsistent from one page to the next. Or maybe something like "Score: 0 (blocked: 1k)" to indicate the proportion of activity being taken out of consideration?

Definitely not confident that this is a good idea or anything btw, just spitballing

[–] SorteKanin@feddit.dk 3 points 2 months ago (1 children)

Would the client not be able to sort the received posts after filtering?

Your client only gets a page of the sorting at a time. You would only be able to sort that single page, but to do an actual sorting, you'll need more posts than just what appears on the front page.

[–] subignition@fedia.io 2 points 2 months ago

Right, that is what I meant by "inconsistent from one page to another". The received posts would be in an unfiltered state on each page and so the order could be very different depending on the local blocklist, probably resulting in stuff like the top of page 2 having a higher score than the bottom of page 1 pretty frequently.

[–] Blackmist@feddit.uk 1 points 2 months ago (1 children)

I'm not sure it would. If my instance knows who up and downvoted a post, then they can work it out on the fly per post without even needing to tell me who did what.

Personally I'm not even in favour of the simple up/downvote system. Everyone uses it differently. "I disagree with you but thanks for being civil" can be up or down depending on who you are.

[–] SorteKanin@feddit.dk 3 points 2 months ago

I’m not sure it would. If my instance knows who up and downvoted a post, then they can work it out on the fly per post without even needing to tell me who did what.

The problem is the sorting of the posts, i.e. what sits at the top of your feed. That can definitely not be calculated on the fly for every single user.