Edit: obligatory explanation (thanks mods for squaring me away)…

What you see via the UI isn’t “all that exists”. Unlike Reddit, where everything is a black box, there are a lot more eyeballs who can see “under the hood”. Any instance admin, proper or rogue, gets a ton of information that users won’t normally see. The attached example demonstrates that while users will only see upvote/downvote tallies, admins can see who actually performed those actions.

Edit: To clarify, not just YOUR instance admin gets this info. This is ANY instance admin across the Fediverse.

  • Reclipse
    link
    fedilink
    English
    -101 year ago

    It’s the only way to avoid double voting from the same account or to remove the reverse vote if one changes one’s mind and votes the other way.

    A better way is to store only who has voted. No need to store how they have voted.

    • @bitbybit@lemmy.world
      link
      fedilink
      English
      241 year ago

      Then people won’t be able to change their minds once they’ve voted, or even see what their previous votes were.

    • Colonel Sanders
      link
      fedilink
      English
      13
      edit-2
      1 year ago

      A better way is to store only who has voted. No need to store how they have voted.

      Unfortunately, as they mentioned it would still need to know which way they voted so one can “unvote” or change their vote.

    • Łumało [he/him]
      link
      fedilink
      English
      31 year ago

      Then either up or down votes would seize to exist, the website has to somehow differentiate between those votes to properly count them.

      • AstralWeekends
        link
        fedilink
        English
        01 year ago

        I think it would be possible not to tie up/down votes to a particular user and still be able to allow votes, but you would probably need to disallow changing a vote (unless there are some fancy uses of cryptography I don’t know about). You could use a bit field to indicate whether or not a particular user voted on a particular post, whether up or down doesn’t matter. You could register the up/down count to the table that has the post id and not tie it to the user that voted. But then a user couldn’t change their vote because of that arrangement.

        I don’t personally care how my votes are recorded, I just like databases.