• Mininux@sh.itjust.works
    link
    fedilink
    English
    arrow-up
    124
    arrow-down
    1
    ·
    11 months ago

    There is the same problem on reddit, so they brought it here too so new users won’t be disoriented (/s)

        • Baron Von J@lemmy.world
          link
          fedilink
          English
          arrow-up
          5
          ·
          11 months ago

          I mod a few communities and haven’t seen anything relating to comments pending mod approval. The only related setting I have on the communities is to restrict posting to moderators (comments on the posts should still be open to anyone).

          • visor841@lemmy.world
            link
            fedilink
            English
            arrow-up
            6
            arrow-down
            1
            ·
            11 months ago

            It’s pretty easy to see on r/askeconomics. All top-level comments there require mod approval, but will add to the number of comments while waiting for approval. So it’s pretty common to see posts with 10+ comments listed, but nothing besides the pinned automod comment is visible.

  • the dopamine fiend@lemmy.world
    cake
    link
    fedilink
    English
    arrow-up
    84
    ·
    11 months 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
      link
      fedilink
      English
      arrow-up
      19
      ·
      11 months 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
        link
        fedilink
        English
        arrow-up
        4
        ·
        11 months 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
        link
        fedilink
        English
        arrow-up
        2
        ·
        11 months 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
          link
          fedilink
          English
          arrow-up
          5
          arrow-down
          1
          ·
          11 months 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:

          if comment_to_delete is deleted {
          	// Do not do anything
          	return
          }
          
          post.comment_count -= 1
          delete_comment(comment_to_delete)
          

          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
            link
            fedilink
            English
            arrow-up
            2
            ·
            11 months 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.

            • density@kbin.social
              link
              fedilink
              arrow-up
              6
              arrow-down
              1
              ·
              11 months ago

              because when you load any page listing posts, you don’t want your server to have to go and download the actual entire comment thread for every post that is listed. And then have to go and count how many there are.

              Because it would be slow, especially with multiple servers involved. Every time you loaded your home page or a community the server would have to start from scratch gathering the data. It would be more accurate but it would be very hard. And not give a lot of extra value.

              So it’s more efficient to have a piece of data attached to the post that just reports the number of comments. Same way as there is a piece of data that contains the title, the name of the person who posted it etc. And that value is updated in some way. Apparently in a way that has not yet been perfected. :)

              • PeleSpirit@lemmy.world
                link
                fedilink
                English
                arrow-up
                5
                ·
                11 months ago

                I appreciate your patience, I updated my previous comment, I think I finally get what you’re saying.

            • athlon@lemm.ee
              link
              fedilink
              English
              arrow-up
              4
              ·
              11 months ago

              Getting the total number of all comments may be very resource heavy if there is a lot of comments.

              If it’s just 5 comments, then the computer can quickly get them all from database and count how many of them are there. Now imagine if there is 50 000 comments and suddenly, you me and entire website ask “how many comments are there for this post?”

              Suddenly the computer is overwhelmed by the request and you may end up crashing it due to amount of tasks it has to do.

              It’s way faster if instead of all of that, the computer kept track of a number of all comments and simply adjust it when comment is added or removed. It does not have to get all the comments and count how many are there, just simply return the number and you are done.

              But in the essence, you sacriface potential accuracy for speed. You may accidentally “desynchronize” the counter - if an user requests a removal of the same comment twice, and you don’t check if that comment was not removed. Or, in theory, if two separate users add or remove a comment at the same time. This is called “race condition”, which is common in multi-threaded computing.

              • PeleSpirit@lemmy.world
                link
                fedilink
                English
                arrow-up
                1
                ·
                11 months ago

                Okay, is it because I haven’t had my coffee yet?

                First line:

                Getting the total number of all comments may be very resource heavy if there is a lot of comments.

                Fourth paragraph:

                It’s way faster if instead of all of that, the computer kept track of a number of all comments and simply adjust it when comment is added or removed. It does not have to get all the comments and count how many are there, just simply return the number and you are done.

                What is the difference between the bolded parts?

                • athlon@lemm.ee
                  link
                  fedilink
                  English
                  arrow-up
                  3
                  ·
                  11 months ago

                  First method does not store the number itself anywhere. Let’s assume that you store apples. I come and ask you “How many apples do you have?”. To answer, you go and count every single apple one by one and return me the number. It’s very easy if you have a small number of apples, but if you have, let’s say, 5000 apples - you can see how long it may take.

                  Second option is you keeping a track of how many apples you have in stock by having it written down somewhere. If I ask you “How many apples do you have?” you just pull out your notepad and tell me the number. If you give me an apple, you just adjust the number you have written down already.

  • C4d@lemmy.world
    link
    fedilink
    English
    arrow-up
    36
    ·
    11 months ago

    Have you disabled viewing posts from bot accounts? It’s one of the user settings.

    If you have disabled viewing posts from bots, this is what you would see if a bot commented.

  • Aux@lemmy.world
    link
    fedilink
    English
    arrow-up
    34
    arrow-down
    1
    ·
    11 months ago

    Because data synchronisation between instances is quite poor.

  • masterairmagic@sh.itjust.works
    link
    fedilink
    English
    arrow-up
    23
    ·
    11 months ago

    This could be due to federation. Maybe they.are federating with servers that you aren’t.

    But Reddit also had a lot of this and people always blamed shadowbans.

    • density@kbin.social
      link
      fedilink
      arrow-up
      4
      ·
      11 months ago

      comments removed by mods would always show up in the count.

      idk why they didn’t just fix that, it made people crazy for no reason.

  • Carighan Maconar@lemmy.world
    link
    fedilink
    English
    arrow-up
    17
    arrow-down
    3
    ·
    11 months ago

    It’s a distributed system, by its very nature no single universal “truth” exists. That is to say, you can very much see differing counts of ~anything. Or different threads. Or anything, really. There is no way to keep everything consistent, ever.

  • redballooon@lemm.ee
    link
    fedilink
    English
    arrow-up
    12
    ·
    11 months ago

    Do you have a client that shows top comments with a time frame like “last 6 hours”? Maybe the comment is older than that.

  • r00ty@kbin.life
    link
    fedilink
    arrow-up
    6
    ·
    11 months ago

    I doubt it is a federation issue. The number of comments will be worked out by the number of comments in the local DB. So the count won’t include comments not received.

    As to why they’re not showing, as mentioned above, hiding bot comments, or perhaps deleted comments still appear in totals (not sure about lemmy, on kbin deleted comments have their text changed to indicate they were deleted).

    • 🇰 🔵 🇱 🇦 🇳 🇦 🇰 ℹ️@yiffit.net
      link
      fedilink
      English
      arrow-up
      11
      ·
      edit-2
      11 months ago

      Being the only person on my instance subscribed to certain communities on other instances, I am pretty sure it is a federation issue. When I look at the comment counts for the same post on two different instance accounts, they are not the same. They often share the same comments, but not all of them. Sometimes the number shown below the post reflects only the comments from the instance you’re viewing it on, sometimes it shows all of them.

      For example, looking at the Baldur’s Gate 3 community on Lemmy World when logged on to Lemmy World, the top post has about 36 comments but counting them in the post there are only 30. 3 of those comments are mine, and they aren’t being shown to my Lemmy World account. When I view it from Yiffit, only my 3 comments appear, while it also says there are 36 total. According to the subscriber count, I am the first person on Yiffit to subscribe there, and that was about an hour ago.

      • r00ty@kbin.life
        link
        fedilink
        arrow-up
        4
        ·
        11 months ago

        Different comment counts between instances is a federation thing, yes. But showing a number of comments different to the comments shown on the same instance, not.

        There are reasons for missing comments, especially on communities from lemmy.world right now. But that’s not what is being reported. A federation message for a post does not contain the number of comments (and that would be a totally pointless property to send). It’s also quite common that certain comments don’t make it over federation.

        The screenshot is showing a comment count without comments, that means the instance has one comment locally but for some reason is now showing it. That’s not a federation thing.

      • r00ty@kbin.life
        link
        fedilink
        arrow-up
        4
        ·
        11 months ago

        This is a known kbin/lemmy thing. Kbin sends dates with a timezone attached, lemmy expects UTC. I actually keep meaning to set the server to UTC to stop this happening.

          • r00ty@kbin.life
            link
            fedilink
            arrow-up
            1
            ·
            edit-2
            11 months ago

            Yeah, we can also solve it by setting server to UTC. Hopefully the time on this comment is better.

            EDIT: Apparently not. How odd, I changed the server timezone.

  • Nighed@sffa.community
    link
    fedilink
    English
    arrow-up
    3
    ·
    11 months ago

    I have seen this happen entirely contained on a single instance (community and my account on the same instance) I don’t have bots blocked.

    So I suspect something is funky somewhere, will try to see how it displays in other apps(and kbin etc later)

  • Blaze@discuss.tchncs.de
    link
    fedilink
    English
    arrow-up
    7
    arrow-down
    14
    ·
    11 months ago

    Is it sync? If any case, this kind of questions are usually better in the app community