• NotMyOldRedditName@lemmy.world
      link
      fedilink
      English
      arrow-up
      1
      ·
      2 hours ago

      Thats wild. The last part about using the savings for their cache, did they mean the CDN type stuff or was that something related to the 1.1.1.1 stuff?

      Either way their plans to use the new excess for the cache will further make things faster for everyone.

  • ramble81@lemmy.zip
    link
    fedilink
    English
    arrow-up
    105
    ·
    14 hours ago

    One silver lining about the component restraints, hopefully it drives people to start creating efficient software again. Actually optimizing what you’re doing to save on RAM rather than a gig per tab in Chrome.

    • fistac0rpse@fedia.io
      link
      fedilink
      arrow-up
      39
      ·
      13 hours ago

      Wish that was the case for a lot of new video games instead of relying on DLSS or FSR to cover up their poor optimisation

      • Holytimes@sh.itjust.works
        link
        fedilink
        English
        arrow-up
        27
        arrow-down
        1
        ·
        12 hours ago

        Picture the level of quality and performance we could have if we had both traditional optimization AND upscaling optimization AND frame gen optimization.

        Cause holy fuck the number of times I’ve seen fsr/dlss slaped onto a game and no effort put into making it perform well.

        Cause there IS work you can do to make fsr/dlss actually look good and perform better.

    • MrQuallzin@pie.eyeofthestorm.place
      link
      fedilink
      English
      arrow-up
      16
      ·
      13 hours ago

      I’m in a community making open source firmware for the Centauri Carbon 3d printer. The thing has 128MB of of RAM. The smarter people in the community worked some magic getting Klipper working on these things, and we’re still fighting to shave off a couple more MB in average use to get things working smoother.

    • tyler@programming.dev
      link
      fedilink
      English
      arrow-up
      8
      ·
      11 hours ago

      Seems to me like everything is instead becoming even more bloated with AI stuff. A Google chat tab uses 2 GIGABYTES on my work computer.

  • stoicmaverick@lemmy.world
    link
    fedilink
    English
    arrow-up
    12
    ·
    13 hours ago

    I never even thought about this before, but what kind of hardware is a root level DNS server like 1.1.1.1 or quad 8 run on? Are they all roughly the same, or do they take different approaches to the load?

    • Illecors@lemmy.cafe
      link
      fedilink
      English
      arrow-up
      6
      ·
      5 hours ago

      Bit of a nitpick, but these providers are not running root servers. They’re just recursive caching servers, probably running unbound.

      If you want to find out root servers - dig for . - that’s a dot. A full stop. That’s the root. Those can then answer where to find your .coms, .nets, etc. Those, in turn, handle the domain you rent; so on and so forth.

    • pet the cat, walk the dog@lemmy.world
      link
      fedilink
      English
      arrow-up
      1
      arrow-down
      1
      ·
      edit-2
      2 hours ago

      Most probably off-the-shelf hardware, but with software optimized out the wazoo. Like, reading directly from SSDs instead of using a filesystem. Or more likely using an in-memory database like Redis, perhaps with custom additions.

      I knew a guy who went on to work for CloudFlare. Back at that job, he made a write-only static-file storage in Node.js, dumping the contents into a giant file bypassing the filesystem and its metadata overhead. That’s the kind of optimization you want — pretty similar to what database engines like MySQL/PostgreSQL do (iirc one of them does in fact support using a plain disk partition for the database).

      Back in early-mid 2010s I’ve read an article on Pornhub’s architecture. They ran Redis behind Haproxy load balancers. An in-memory database, behind load balancers. Some people say that it’s normal, but I’ve never had conditions calling for such a thing instead of sharding harder.

    • Archer@lemmy.world
      link
      fedilink
      English
      arrow-up
      32
      ·
      11 hours ago

      Look up how Cloudflare does anycast BGP. They have servers in data centers everywhere and leverage the fact that they can all be 1.1.1.1 so people’s queries only hit the physically closest server, it’s pretty cool