Get out, now.

  • Asymptote@lemmy.dbzer0.com
    link
    fedilink
    English
    arrow-up
    25
    arrow-down
    17
    ·
    11 months ago

    It’s quite computationally expensive to hold on to the block feature. He’s out to save money.

    • Blackmist@feddit.uk
      link
      fedilink
      English
      arrow-up
      47
      arrow-down
      1
      ·
      11 months ago

      That’s one reason.

      The other is that he’s seen how many people block him, and being the thin skinned narcissist that he is, he doesn’t like it.

      • LeonidasFett@lemmy.world
        link
        fedilink
        English
        arrow-up
        7
        arrow-down
        2
        ·
        11 months ago

        Extra database calls, running extra logic to check if you’re blocked. That sort of stuff I guess. It does make sense, compute, storage and network resources can be very expensive if you host on cloud providers like Azure or AWS.

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

          Feed generation is already a very complex process implementing hundreds or thousands of variables to show every single user only posts that are likely to be relevant to them. Filtering out any posts by blocked accounts shouldn’t matter here. The real reason why Elon removed the feature is probably that he realized he was the most blocked person on Twitter, lol.

        • Honytawk@lemmy.zip
          link
          fedilink
          English
          arrow-up
          7
          arrow-down
          1
          ·
          11 months ago

          It would make it less computional, even if it adds a row of cells in the database.

          When it tries to load something and sees that the person is blocked, then it doesn’t need to load anything else.

          It would literally load less posts.

      • r1veRRR@feddit.de
        cake
        link
        fedilink
        English
        arrow-up
        8
        arrow-down
        7
        ·
        11 months ago

        Imagine a website where EVERYONE sees the exact same content. You could just calculate that content once, save the result, and give everyone that pre-calculated result. This is called caching (roughly speaking).

        Now imagine the other extreme: NOONE sees the same content. That means you have to do your (comparatively) expensive calculations every single time. That requires a lot more compute power, esp. if you want to maintain a decent speed.

        Most websites aren’t entirely one or the other, but in general anything customizable will make things just a little less cache-able, and therefore everything a little more compute-intensive. Blocking is one of those customizations.

        • bjorney@bjorney.lol
          link
          fedilink
          English
          arrow-up
          21
          ·
          11 months ago

          That would make sense if there wasn’t such a thing as a “follow” feature.

          Everyone already sees different content

          • The Quuuuuill@slrpnk.net
            link
            fedilink
            English
            arrow-up
            3
            arrow-down
            4
            ·
            11 months ago

            It still adds complexity. Let’s break out each later of complexity on a community site.

            1. The site has no direct logins. There’s an HTML file some people update together
            2. There’s no currated feed. There’s a single feed all posts go into. When you hit the API you just ask it “give me all the latest posts.” The API server returns you a reasonable number of posts. 20, let’s say
            3. Each user has a feed of their own posts. Now, in addition to what you could get before, you also can make queries for the most recent 20 posts made by a specific user.
            4. Each user has a feed of posts from users they follow. Now when you query the API for your following feed, multiple queries are made. A query is made to see who you follow, and then a query is made to get the most recent 20 posts from a blended feed. This part is actually already quite expensive, but its still sort of the bare minimum you’d expect for a community site like MySpace, Facebook, Twitter, Reddit, Mastodon, or Lemmy

            this is where we will deviate from history. It was here that blocks were implemented. However I want to explain blocks in the level of complexity as they exist today. We will revisit later that Elon could reduce complexity by removing any of these other features, leading us to the conclusion that his motivation is not technical in nature

            1. Posts can be threaded, meaning that some posts are only relevant in relation to other posts. You don’t want yo show them when a user makes a query for their, or another user’s feed. But you do need to show them when someone opens a feed for a post. These feeds are threaded in reverse of your other feeds. This necessitates a different database mechanism than the one you use for normal posts. Now you have an architectural problem
            2. Posts can be reposted, including posts in threads, so sometimes you have to load a lot of context when someone goes to their usual home feed
            3. It takes a long time to calculate thread posts, especially now that they sometimes show in the default feed. You determine from usage data that it’s more important to update the feed once the initial feed load is complete so when you load the initial feed, you also load the first 10 posts of every thread in that initial feed. The initial feed load goes from 20 posts to 200 posts even though users only see 20 posts when they see the feed. Its just now when yoh click on one of those feeds, it opens instantly because it was already preloaded
            4. Even though your users engage more if there are preloaded feeds, they’d still engage EVEN MORE if you brought the initial load time down more. You introduce caching. Now parts of feeds are ready to go from your inexpensive to query database instead of your expensive to query database. The cost is you do need some processes in the background ALWAYS updating the expensive to query database so the cheap to query one is always up to date with queries people are likely to make
            5. Your website has become really popular. You need to be able to up and down scale it so that you can meet demand and keep costs low. This means introducing architectural complexity so that different parts can run separately. Your three databases (regular, threaded posts, and cache) are all run on seperate hardware. Your core service is run on a clustering mechanism so you can scale up multiple instances of it at the same time. You even identify parts of the core service that are accessed a lot that could be their own services run on a different clustering mechanism so that they can scale up and down even faster than your core service can
            6. Your website is a global phenomenon. Its not good enough to always be available, users across the globe need to have a good experience. You need cache databases in every region you do business in. You pick as your regions of focus: Western US, Central Canada, Eastern US, Western Europe, Eastern Europe, the Middle East, India, Northern Asia, Southeast Asia, the south pacific, Latin America, and Africa. You need to keep data in sync across all regions, and you must also have local databases for storing posts from users in those regions until you can sync them to the other regions. Your database integrity model has to change entirely now, requiring you to implement a much more complicated database mechanism.
            7. California and Europe have special rules you must follow. You develop special features to satisfy their requirements, and must add special checks for those requirements to all of your API calls.
            8. For marketing reasons, instead of the most recent 20 posts in the main feed, you want to show the top 20 posts based on a calculation of recency, activity from other users, and engagement with your sponsored ads. Loading the feed is now 3x more expensive (in terms of computational time)
            9. Users don’t want to see posts from other users. You must add a list of users for every user representing the users they don’t want to see posts from. You must check on every feed update for posts that don’t conform to these rules and throw them out, and then load a new post in their place. Every time a user blocks another user, you must invalidate the parts of the cache that were relevant to that users feed. Invalidating caches is very expensive
            10. Users don’t want users they block to see their own posts. Now instead of checking a single user’s block list as you load the feed, you must check both that block list, and every block list for ever poster for every post you load. This can make the feed load anywhere between 2x expensive or 200x expensive, depending on the diversity of posters in the feed you’re calculating. You must also invidate more caches for every block

            So yes. Blocking users on a website like twitter is complicated (with Twitter’s current implementation and feature set) but there are ways to simplify this better than what Elon is doing. Not preloading tweets on page load or reducing the complexity of the sorting algorithm for the main feed could both do what Elon is claiming this is about. He doesn’t want to get rid of those though. He views them as special important features. He picked blocking as the thing to reduce complications for because he views it as an unimportant feature, antithetical to his personal twitter goals

        • pinkdrunkenelephants@sopuli.xyz
          link
          fedilink
          English
          arrow-up
          11
          ·
          edit-2
          11 months ago

          Computational power has Jack shit to do with his decision. That’s just a cheap talking point meant to justify it in our eyes as if most of us even know what it means.

          Stop letting obvious concern trolls manipulate you into accepting absurdities.

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

          That’s not really a solid argument. Blocking is likely implemented as a very tiny piece of what is already very likely a massive table join operation. Computationally, it’s likely to have as much an impact on their compute costs as the floor mats in your car have on fuel efficiency.

          Everyone already sees different content. It’s an inherent part of Twitter. It’s not a static site where everyone sees the same thing. You see the tweets of who you’re following, and don’t see tweets of those you’ve muted. All that filtering is happening at the server level. Any new tweets or edited tweets or deleted tweets change that content too, which is happening potentially hundreds of times a second for some users.

          Anyway, caching would be implemented after a query for what tweets the user sees is performed to reduce network traffic between a browser and the Twitter servers. There’s some memoization that can be done at the server level, but the blocking feature is likely to have almost no impact on that given the fundamental functionality of Twitter.

    • AaronMaria@lemmy.ml
      link
      fedilink
      English
      arrow-up
      14
      arrow-down
      1
      ·
      11 months ago

      I don’t see how an additional Filter would matter in any noticeable way for something like Twitter

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

          Can you get emerald boy’s tiny cock out of your mouth long enough to back this up with evidence?

          • Asymptote@lemmy.dbzer0.com
            link
            fedilink
            English
            arrow-up
            1
            arrow-down
            4
            ·
            11 months ago

            “This guy says that Elon is doing something dumb to save money, he must love Elon”

            Idunno, maybe you should try interacting with humans in the real world some time, might be good for your mental health.

            • cjsolx@lemmy.world
              link
              fedilink
              English
              arrow-up
              2
              ·
              11 months ago

              It would just be nice if you had anything to show re: the block feature being expensive. Like, it’s Twitter they deal with millions of tweets every few hours but the block feature breaks the bank?

              [X] Doubt

              That’s all.

        • Buttons@programming.dev
          link
          fedilink
          English
          arrow-up
          8
          arrow-down
          1
          ·
          11 months ago

          I’m going to express the logic in plain English: “If message is from somebody on this short list, do not show it.”

          Let everyone judge for themselves the competence of engineers who created a system where such logic is computationally expensive.

          • Asymptote@lemmy.dbzer0.com
            link
            fedilink
            English
            arrow-up
            1
            arrow-down
            4
            ·
            edit-2
            11 months ago

            I really don’t care if people believe me or not; I have it from an engineering tweep (the old term for twitter employees) and therefore cannot post proof.