When scrolling through Lemmy, I often will see the same posts from the previous page - usually as the first links on the current page I’m on.

  • FartsWithAnAccent
    link
    English
    441 year ago

    Just speculating but, as new posts are made, it pushes the other posts up some, which can make them show up again when you hit next (or hit the infinite scrolling reload point).

  • @[email protected]
    link
    fedilink
    English
    18
    edit-2
    1 year ago

    Lazy programming.

    The naive way to do pagination is to say show me items x through y. But obviously if the back end is dynamic, x through y could change. So the better way to program pagination is to say show me items above item n, too item n plus x, where n is a specific post rather than an index. Then you can have dynamic pagination based on the last comment, you saw.

    Another way to do this is have your session look at a static snapshot of the dynamic database, until you refresh the page or go back to the top. This is possible with a lot of different databases, kind of like how ZFS can give you snapshots of root at any time.

      • @[email protected]
        link
        fedilink
        English
        81 year ago

        It’s a valid design choice. But it is to keep the programming simple. One might characterize that kind of choice as lazy. Especially in terms of user interface. But I’m not beating up on Lemmy. I’m just explaining to the original poster the trade-offs that people make.

        • @Thehalfjew
          link
          31 year ago

          It’s not necessarily lazy. If I want to go back to a particular post I saw on page 1 when I’m on page 2, but it was knocked off the front page, how would I find it? It’s no longer on page 1, so back would miss it. I’d have to go to 1 and then back again to 2 to find a post that moved.

          It gets even more complicated when the algorithm also changes post order.

          Sometimes simple with minor inconvenience is the best option.

          • @[email protected]
            link
            fedilink
            English
            11 year ago

            In an endlessly scrolling implementation, you’d just scroll up.

            Without endless scrolling, it could behave as follows:

            1. Moving back to page 1 takes the user to where they were on page 1 when they navigated away, with the same items visible
            2. When automatically fetching new posts, either expand the page (pushing nothing off) or make it visually clear that pages will be pushed to the next page. Or just don’t fetch new posts automatically, and only reset the first / last post of a page if the user clicks Refresh.
    • @[email protected]
      link
      fedilink
      English
      61 year ago

      “Let’s have each user take an individual snapshot of the database to scroll over until they refresh like in ZFS” ok buddy

      Tell me you’ve dabbled in homelab stuff without telling me you’ve never designed a high traffic web backend

      • @[email protected]
        link
        fedilink
        English
        11
        edit-2
        1 year ago

        Sir, you hardly know me! Disagree fine, but don’t assume my pedigree.

        FWIW temporal tables, and time travel are real things available now and they are built very similarly to ZFS versioning.

        If we are truly trying to make a highly scalable distributed website, we wouldn’t be querying a database directly, would be using something distributed. Like foundationDB, or memcached. And we would have to modify our approach somewhat, but these are still solvable problems. The architecture and the requirements are tightly coupled. But we can’t make assumptions and rule out solutions at the whiteboard stage.

      • Kayn
        link
        fedilink
        English
        21 year ago

        Why do you have to be so condescending from the get-go? Just explaining why it wouldn’t work would have been fine.

        • @False
          link
          1
          edit-2
          1 year ago

          To be fair it’s in response to a guy that started off by calling the programmers lazy.

          • Kayn
            link
            fedilink
            English
            -11 year ago

            That explains, but doesn’t excuse.

  • all-knight-party
    link
    fedilink
    61 year ago

    I think when a new post is posted and it hits the front page it bumps all the other posts back by that many, which will make them get bumped from the end of one page into the beginning of the next

  • @uservoid1
    link
    21 year ago

    New posts added since your last refresh push some of current page posts to the next one

  • @[email protected]
    link
    fedilink
    English
    21 year ago

    You have your answer from every commenter here but this is why it’s best to browse with an app that marks as read and hides stuff as you scroll.

  • @[email protected]
    link
    fedilink
    English
    21 year ago

    Because new content got posted while you were browsing trough the page. If you refresh the page you’re on it shows different entries on the top and the bottom ones are pushed to 2nd page.

    • ares35
      link
      fedilink
      11 year ago

      when you start seeing the same posts again and again the deeper you go, that’s your cue to start back on page 1 again.

  • @[email protected]
    link
    fedilink
    English
    11 year ago

    The easiest solution might be to just look at what is returned and see if there are any duplicates with what you already have, and just filter those out. It’s not like you’re going to notice if the returned list is shorter if it loads more before you even get to the bottom.

    If you get less than 1 screen of posts, ask for more.