One big difference that I’ve noticed between Windows and Linux is that Windows does a much better job ensuring that the system stays responsive even under heavy load.

For instance, I often need to compile Rust code. Anyone who writes Rust knows that the Rust compiler is very good at using all your cores and all the CPU time it can get its hands on (which is good, you want it to compile as fast as possible after all). But that means that for a time while my Rust code is compiling, I will be maxing out all my CPU cores at 100% usage.

When this happens on Windows, I’ve never really noticed. I can use my web browser or my code editor just fine while the code compiles, so I’ve never really thought about it.

However, on Linux when all my cores reach 100%, I start to notice it. It seems like every window I have open starts to lag and I get stuttering as the programs struggle to get a little bit of CPU that’s left. My web browser starts lagging with whole seconds of no response and my editor behaves the same. Even my KDE Plasma desktop environment starts lagging.

I suppose Windows must be doing something clever to somehow prioritize user-facing GUI applications even in the face of extreme CPU starvation, while Linux doesn’t seem to do a similar thing (or doesn’t do it as well).

Is this an inherent problem of Linux at the moment or can I do something to improve this? I’m on Kubuntu 24.04 if it matters. Also, I don’t believe it is a memory or I/O problem as my memory is sitting at around 60% usage when it happens with 0% swap usage, while my CPU sits at basically 100% on all cores. I’ve also tried disabling swap and it doesn’t seem to make a difference.

EDIT: Tried nice -n +19, still lags my other programs.

EDIT 2: Tried installing the Liquorix kernel, which is supposedly better for this kinda thing. I dunno if it’s placebo but stuff feels a bit snappier now? My mouse feels more responsive. Again, dunno if it’s placebo. But anyways, I tried compiling again and it still lags my other stuff.

  • scsi@lemm.ee
    link
    fedilink
    arrow-up
    60
    ·
    10 days ago

    The Linux kernel uses the CPU default scheduler, CFS, a mode that tries to be fair to all processes at the same time - both foreground and background - for high throughput. Abstractly think “they never know what you intend to do” so it’s sort of middle of the road as a default - every CPU cycle of every process gets a fair tick of work unless they’ve been intentionally nice’d or whatnot. People who need realtime work (classic use is for audio engineers who need near-zero latency in their hardware inputs like a MIDI sequencer, but also embedded hardware uses realtime a lot) reconfigure their system(s) to that to that need; for desktop-priority users there are ways to alter the CFS scheduler to help maintain desktop responsiveness.

    Have a look to Github projects such as this one to learn how and what to tweak - not that you need to necessarily use this but it’s a good point to start understanding how the mojo works and what you can do even on your own with a few sysctl tweaks to get a better desktop experience while your rust code is compiling in the background. https://github.com/igo95862/cfs-zen-tweaks (in this project you’re looking at the set-cfs-zen-tweaks.sh file and what it’s tweaking in /proc so you can get hints on where you research goals should lead - most of these can be set with a sysctl)

    There’s a lot to learn about this so I hope this gets you started down the right path on searches for more information to get the exact solution/recipe which works for you.

    • 0x0@programming.dev
      link
      fedilink
      arrow-up
      30
      ·
      10 days ago

      I’d say nice alone is a good place to start, without delving into the scheduler rabbit hole…

      • scsi@lemm.ee
        link
        fedilink
        arrow-up
        15
        ·
        10 days ago

        I would agree, and would bring awareness of ionice into the conversation for the readers - it can help control I/O priority to your block devices in the case of write-heavy workloads, possibly compiler artifacts etc.

    • SorteKanin@feddit.dkOP
      link
      fedilink
      arrow-up
      27
      ·
      10 days ago

      “they never know what you intend to do”

      I feel like if Linux wants to be a serious desktop OS contender, this needs to “just work” without having to look into all these custom solutions. If there is a desktop environment with windows and such, that obviously is intended to always stay responsive. Assuming no intentions makes more sense for a server environment.

      • BearOfaTime@lemm.ee
        link
        fedilink
        arrow-up
        19
        ·
        9 days ago

        Even for a server, the UI should always get priority, because when you gotta remote in, most likely shit’s already going wrong.

        • SirDimples@programming.dev
          cake
          link
          fedilink
          arrow-up
          12
          ·
          9 days ago

          Totally agree, I’ve been in the situation where a remote host is 100%-ing and when I want to ssh into it to figure out why and possibly fix it, I can’t cause ssh is unresponsive! leaving only one way out of this, hard reboot and hope I didn’t lose data.

          This is a fundamental issue in Linux, it needs a scheduler from this century.

          • eyeon@lemmy.world
            link
            fedilink
            arrow-up
            3
            ·
            9 days ago

            You should look into IPMI console access, that’s usually the real ‘only way out of this’

            SSH has a lot of complexity but it’s still the happy path with a lot of dependencies that can get in your way- is it waiting to do a reverse dns lookup on your IP? Trying to read files like your auth key from a saturated or failing disk? syncing logs?

            With that said i am surprised people are having responsiveness issues under full load, are you sure you weren’t running out of memory and relying heavily on swapping?

      • UnculturedSwine@lemmy.world
        link
        fedilink
        arrow-up
        6
        ·
        9 days ago

        One of my biggest frustrations with Linux. You are right. If I have something that works out of the box on windows but requires hours of research on Linux to get working correctly, it’s not an incentive to learn the complexities of Linux, it’s an incentive to ditch it. I’m a hobbyist when it comes to Linux but I also have work to do. I can’t be constantly ducking around with the OS when I have things to build.

      • secret300@lemmy.sdf.org
        link
        fedilink
        arrow-up
        2
        ·
        8 days ago

        I see what you mean but I feel like it’s more on the distro mainters to set niceness and prioritize the UI while under load.

      • witx@lemmy.sdf.org
        link
        fedilink
        arrow-up
        2
        ·
        edit-2
        8 days ago

        What do you even mean as serious contender? I’ve been using Linux for almost 15 years without an issue on CPU, and I’ve used it almost only on very modest machines. I feel we’re not getting your whole story here.

        On the other hand whenever I had to do something IO intensive on windows it would always crawl in these machines

        • SorteKanin@feddit.dkOP
          link
          fedilink
          arrow-up
          4
          ·
          8 days ago

          You are getting the whole story - not sure what it is you think is missing. But I mean a serious desktop contender has to take UX seriously and have things “just work” without any custom configuration or tweaking or hacking around. Currently when I compile on Windows my browser and other programs “just works” while on Linux, the other stuff is choppy and laggy.

    • msage@programming.dev
      link
      fedilink
      arrow-up
      5
      ·
      9 days ago

      Wasn’t CFS replaced in 6.6 with EEDVF?

      I have the 6.6 on my desktop, and I guess the compilations don’t freeze my media anymore, though I have little experience with it as of now, need more testing.

    • agilob@programming.dev
      link
      fedilink
      English
      arrow-up
      1
      ·
      edit-2
      8 days ago

      The Linux kernel uses the CPU default scheduler, CFS,

      Linux 6.6 (which recently landed on Debian) changed the scheduled to EEVDF, which is pretty widely criticized for poor tuning. 100% busy which means the scheduler is doing good job. If the CPU was idle and compilation was slow, than we would look into task scheduling and scheduling of blocking operations.

  • Lupec@lemm.ee
    link
    fedilink
    arrow-up
    25
    ·
    edit-2
    10 days ago

    Responsiveness for typical everyday usage is one of the main scenarios kernels like Zen/Liquorix and their out of the box scheduler configurations are meant to improve, and in my experience they help a lot. Maybe give them a go sometime!

    Edit: For added context, I remember Zen significantly improving responsiveness under heavy loads such as the one OP is experiencing back when I was experimenting with some particularly computationally intensive tasks

    • thingsiplay@beehaw.org
      link
      fedilink
      arrow-up
      11
      ·
      10 days ago

      https://github.com/zen-kernel/zen-kernel/wiki/Detailed-Feature-List

      That’s the reason I installed Zen too and use it as the default. While Zen is meant to improve responsiveness of interactive usage on the system, it comes at a price. The overall performance might decrease and it should require more power. But if someone needs to solve the problem of the OP (need to work on the computer while under heavy load), then Zen is probably the right tool. Some distributions have the Zen Kernel in their repository and the install process is straightforward.

      • Lupec@lemm.ee
        link
        fedilink
        arrow-up
        4
        ·
        9 days ago

        Very good points, it’s all trade-offs at the end of the day. I’ve always found them more than worth it myself for non server workloads, but as always YMMV.

  • crispy_kilt@feddit.de
    link
    fedilink
    arrow-up
    24
    ·
    10 days ago

    nice +5 cargo build

    nice is a program that sets priorities for the CPU scheduler. Default is 0. Goes from -19, which is max prio, to +19 which is min prio.

    This way other programs will get CPU time before cargo/rustc.

    • SorteKanin@feddit.dkOP
      link
      fedilink
      arrow-up
      11
      ·
      10 days ago

      It’s more of a workaround than a solution. I don’t want to have to do this for every intensive program I run. The desktop should just be responsive without any configuration.

      • vxx@lemmy.world
        link
        fedilink
        arrow-up
        14
        ·
        edit-2
        9 days ago

        You could give your compiler a lower priority instead of upping everything else.

        • SorteKanin@feddit.dkOP
          link
          fedilink
          arrow-up
          5
          ·
          9 days ago

          I’d still need to lower the priority of my C++ compiler or whatever else intensive stuff I’d be running. I would like a general solution, not a patch just for running my Rust compiler.

          • crispy_kilt@feddit.de
            link
            fedilink
            arrow-up
            2
            ·
            9 days ago

            How do you expect the system to know what program is important to you and which isn’t?

            The windows solution is to switch tasks very often and to do a lot of accounting to ensure fair distribution. This results in a small but significant performance degradation. If you want your system to perform worse overall you can achieve this by setting the default process time slice value very low - don’t come back complaining if your builds suddently take 10-20% longer though.

            The correct solution is for you to tell the system what’s important and what is not so it can do what you want properly.

            You might like to configure and use the auto nice deamon: https://and.sourceforge.net/

            • FizzyOrange@programming.dev
              link
              fedilink
              arrow-up
              4
              ·
              9 days ago

              How do you expect the system to know what program is important to you and which isn’t?

              Hmm

              The windows solution is to switch tasks very often and to do a lot of accounting to ensure fair distribution.

              Sounds like you have a good idea already!

      • boredsquirrel@slrpnk.net
        link
        fedilink
        arrow-up
        3
        ·
        9 days ago

        Yes, this is a bad solution. No program should have that privilege, it needs to be an allowlist and not a blocklist.

      • crispy_kilt@feddit.de
        link
        fedilink
        arrow-up
        3
        ·
        9 days ago

        No. This will wreak havoc. At most at -1 but I’d advise against that. Just spawn the lesser-prioritised programs with a positive value.

          • crispy_kilt@feddit.de
            link
            fedilink
            arrow-up
            5
            ·
            edit-2
            9 days ago

            Critical operating system tasks run at -19. If they don’t get priority it will create all kinds of problems. Audio often runs below 0 as well, at perhaps -2, so music doesn’t stutter under load. Stuff like that.

              • crispy_kilt@feddit.de
                link
                fedilink
                arrow-up
                5
                ·
                9 days ago

                Default is 0. Also, processes inherit the priority of their parent.

                This is another reason why starting the desktop environment as a whole with a different prio won’t work: the compiler is started as a child of the editor or shell which is a child of the DE so it will also have the changed prio.

      • owsei@programming.dev
        link
        fedilink
        arrow-up
        2
        ·
        9 days ago

        You can just alias to do this in the programs you do use

        Sure, the first time you won’t have this enabled, but after that it just works.

    • UnculturedSwine@lemmy.world
      link
      fedilink
      arrow-up
      2
      ·
      9 days ago

      I distro hop occasionally but always find myself coming back to popos. There are so many quality of life improvements that seem small but make all the difference.

  • Amanda@aggregatet.org
    link
    fedilink
    Svenska
    arrow-up
    16
    ·
    edit-2
    10 days ago

    Lots of bad answers here. Obviously the kernel should schedule the UI to be responsive even under high load. That’s doable; just prioritise running those over batch jobs. That’s a perfectly valid demand to have on your system.

    This is one of the cases where Linux shows its history as a large shared unix system and its focus as a server OS; if the desktop is just a program like any other, who’s to say it should have more priority than Rust?

    I’ve also run into this problem. I never found a solution for this, but I think one of those fancy new schedulers might work, or at least is worth a shot. I’d appreciate hearing about it if it does work for you!

    Hopefully in a while there are separate desktop-oriented schedulers for the desktop distros (and ideally also better OOM handlers), but that seems to be a few years away maybe.

    In the short term you may have some success in adjusting the priority of Rust with nice, an incomprehensibly named tool to adjust the priority of your processes. High numbers = low priority (the task is “nicer” to the system). You run it like this: nice -n5 cargo build.

    • 0x0@programming.dev
      link
      fedilink
      arrow-up
      5
      ·
      10 days ago

      Obviously the kernel should schedule the UI to be responsive even under high load.

      Obviously… to you.

      This is one of the cases where Linux shows its history as a large shared unix system and its focus as a server OS; if the desktop is just a program like any other,

      Exactly.

      • SorteKanin@feddit.dkOP
        link
        fedilink
        arrow-up
        14
        ·
        edit-2
        10 days ago

        Obviously… to you.

        No. I’m sorry but if you are logged in with a desktop environment, obviously the UI of that desktop needs to stay responsive at all times, also under heavy load. If you don’t care about such a basic requirement, you could run the system without a desktop or you could tweak it yourself. But the default should be that a desktop is prioritized and input from users is responded to as quickly as possible.

        This whole “Linux shouldn’t assume anything”-attitude is not helpful. It harms Linux’s potential as a replacement for Windows and macOS and also just harms its UX. Linux cannot ever truly replace Windows and macOS if it doesn’t start thinking about these basic UX guarantees, like a responsive desktop.

        This is one of the cases where Linux shows its history as a large shared unix system and its focus as a server OS; if the desktop is just a program like any other,

        Exactly.

        You say that like it’s a good thing; it is not. The desktop is not a program like any other, it is much more important that the desktop keeps being responsive than most other programs in the general case. Of course, you should have the ability to customize that but for the default and the general case, desktop responsiveness needs to be prioritized.

        • BearOfaTime@lemm.ee
          link
          fedilink
          arrow-up
          6
          ·
          9 days ago

          Even for a server, the UI should always be priority. If you’re not using the desktop/UI, what’s the harm?

          When you do need to remote into a box, it’s often when shit’s already sideways, and having an unresponsive UI (or even a sluggish shell) gets old.

          A person interacting with a system needs priority.

      • Amanda@aggregatet.org
        link
        fedilink
        Svenska
        arrow-up
        8
        ·
        10 days ago

        I meant, obviously in the sense that Windows and macOS both apparently already do this and that it’s a desirable property to have, not that it’s technically easy.

  • JATth@lemmy.world
    link
    fedilink
    arrow-up
    13
    ·
    9 days ago

    The kernel runs out of time to solve the NP-complete scheduling problem in time.

    More responsiveness requires more context-switching, which then subtracts from the available total CPU bandwidth. There is a point where the task scheduler and CPUs get so overloaded that a non-RT kernel can no longer guarantee timed events.

    So, web browsing is basically poison for the task scheduler under high load. Unless you reserve some CPU bandwidth (with cgroups, etc.) beforehand for the foreground task.

    Since SMT threads also aren’t real cores (about ~0.4 - 0.7 of an actual core), putting 16 tasks on a 16/8 machine is only going to slow down the execution of all other tasks on the shared cores. I usually leave one CPU thread for “housekeeping” if I need to do something else. If I don’t, some random task is going to be very pleased by not having to share a core. That “spare” CPU thread will be running literally everything else, so it may get saturated by the kernel tasks alone.

    nice +5 is more of a suggestion to “please run this task with a worse latency on a contended CPU.”.

    (I think I should benchmark make -j15 vs. make -j16 to see what the difference is)

    • SorteKanin@feddit.dkOP
      link
      fedilink
      arrow-up
      8
      ·
      9 days ago

      That’s all fine, but as I said, Windows seems to handle this situation without a hitch. Why can Windows do it when Linux can’t?

      Also, it sounds like you suggest there is a tradeoff between bandwidth and responsiveness. That sounds reasonable. But shouldn’t Linux then allow me to easily decide where I want that tradeoff to lie? Currently I only have workarounds. Why isn’t there some setting somewhere to say “Yes, please prioritise responsiveness even if it reduces bandwidth a little bit”. And that probably ought to be the default setting. I don’t think a responsive UI should be questioned - that should just be a given.

      • FizzyOrange@programming.dev
        link
        fedilink
        arrow-up
        5
        ·
        9 days ago

        You’re right of course. I think the issue is that Linux doesn’t care about the UI. As far as it is concerned GUI is just another program. That’s the same reason you don’t have things like ctrl-alt-del on Linux.

        • JATth@lemmy.world
          link
          fedilink
          arrow-up
          4
          ·
          8 days ago

          To be fair, there should be some heuristics to boost priority of anything that has received input from the hardware. (a button click e.g.) The no-care-latency jobs can be delayed indefinitely.

      • JATth@lemmy.world
        link
        fedilink
        arrow-up
        5
        ·
        edit-2
        8 days ago

        Why can Windows do it when Linux can’t?

        Windows lies to you. The only way they don’t get this problem is that they are reserving some CPU bandwidth for the UI beforehand. Which explains the 1-2% y-cruncher worse results on windows.

        • SorteKanin@feddit.dkOP
          link
          fedilink
          arrow-up
          5
          ·
          8 days ago

          If that’s the solution to the problem, it’s a good solution. Linux ought to do the same thing, cause none of the suggestions in this thread have worked for me.

            • JATth@lemmy.world
              link
              fedilink
              arrow-up
              2
              ·
              edit-2
              8 days ago

              nohz_full confusingly also helps with power usage… if the cpu doesn’t have anything to run, no point waking it up with a scheduler-tick IPI… but also no point trying to run the scheduler if a core is peaking with a single task… With nohz the kernel overheard basically ceases to exist for a task while the it is running. (Thought the overhead just moves to non-nohz cpu cores)

      • JATth@lemmy.world
        link
        fedilink
        arrow-up
        4
        ·
        edit-2
        8 days ago

        I agree that UI should always take priority. I shouldn’t have to do anything to guarantee this.

        I have HZ_1000, tickless kernel with nohz_full set up. This all has a throughput/bandwidth cost (about 2%) in exchange for better responsiveness by default.

        But this is not enough, because the short burst UI tasks need near-zero wake-up latency… By the time the task scheduler has done its re-balancing the UI task is already sleeping/halted again, and this cycle repeats. So the nice/priorities don’t work very well for UI tasks. Only way a UI task can run immediately is if it can preempt something or if the system has a somewhat idle CPU to put it on.

        The kernel doesn’t know any better which tasks are like this. The on-going EEVDF, sched_ext scheduler projects attempt to improve the situation. (EEVDF should allow specifying the desired latency, while sched_ext will likely allow tuning the latency automatically)

  • sunzu@kbin.run
    link
    fedilink
    arrow-up
    12
    ·
    10 days ago

    I face similar issue when updating steam games although I think that’s related to disk read write

    But either way, issues like these gonna need to be address before we finally hit the year of Linux desktop lol

  • Possibly linux@lemmy.zip
    link
    fedilink
    English
    arrow-up
    12
    ·
    edit-2
    9 days ago

    It really depends on your desktop. For instance gnome handles high CPU very well in my experience.

    I would run your compiler in a podman container with a CPU cap.

    Edit: it might be related to me using Fedora

  • tatterdemalion@programming.dev
    link
    fedilink
    arrow-up
    11
    ·
    edit-2
    9 days ago

    Sounds like Kubuntu’s fault to me. If they provide the desktop environment, shouldn’t they be the ones making it play nice with the Linux scheduler? Linux is configurable enough to support real-time scheduling.

    FWIW I run NixOS and I’ve never experienced lag while compiling Rust code.

    • SorteKanin@feddit.dkOP
      link
      fedilink
      arrow-up
      8
      ·
      9 days ago

      I have a worrying feeling that if I opened a bug for the KDE desktop about this, they’d just say it’s a problem of the scheduler and that’s the kernel so it’s out of their hands. But maybe I should try?

    • SorteKanin@feddit.dkOP
      link
      fedilink
      arrow-up
      4
      ·
      10 days ago

      I don’t really want to limit the Rust compiler. If I leave my computer running while I take a break, I don’t want it to artificially throttle the compiler. I just want user input and responsiveness of open windows to take priority over the compiler.

  • SorteKanin@feddit.dkOP
    link
    fedilink
    arrow-up
    8
    ·
    9 days ago

    So I just tried using nice -n +19 and it still lags my browser and my UI. So that’s not even a good workaround.

    • BB_C@programming.dev
      link
      fedilink
      arrow-up
      1
      ·
      8 days ago

      Is your browser Firefox?
      What kind of storage devices do you have? NVMe?
      Did you check with tools like iotop to see if something is going on IO wise?

      You assumed that the problem is caused by the CPU being utilized at 100%.
      This may not be the case.

      A lot of us don’t run a DE at all. I myself use Awesome WM.
      For non-tilers, Openbox with some toolbar would be the ideal setup.

      I mention this because we (non-DE users) would have no experience with some funky stuff like a possible KDE indexer running in the background killing IO performance and thrashing buffered/cached memory.

      Also, some of us run firefox with eatmydata because we hate fsync 🤨

      Neither KDE nor Gnome is peak Desktop Linux experience.
      Ubuntu and its flavors is not peak distro experience either.

      If you want to try Desktop Linux for real, you will need to dip your toes a little bit deeper.

      • SorteKanin@feddit.dkOP
        link
        fedilink
        arrow-up
        5
        ·
        edit-2
        8 days ago

        Yes Firefox, yes NVMe. No, there is no IO happening and again, sitting at relatively low memory usage. I was not running anything else than the compiler, my editor and Firefox. I’m fairly confident the CPU usage is the culprit as memory usage is not severely affected and disk usage by the compiler should be pretty minimal (and I don’t see how disk usage would make Firefox slow if there’s still plenty of RAM available).

        Neither KDE nor Gnome is peak Desktop Linux experience. Ubuntu and its flavors is not peak distro experience either.

        If you want to try Desktop Linux for real, you will need to dip your toes a little bit deeper.

        I’ve heard much of the opposite - KDE is touted as an easy-to-use desktop and Ubuntu is largely a popular “just works” distro. And honestly that has been my primary experience. Mostly everything works, but there are some hiccups here and there like the problem I posted about in this thread.

        What alternative would you suggest?

        • BB_C@programming.dev
          link
          fedilink
          arrow-up
          1
          ·
          8 days ago

          What alternative would you suggest?

          A, rolling release first, distro (e.g. Arch or Void) with no DE installed.
          But you’re probably not ready for that.
          For me, a terminal and Firefox are the only GUI apps really needed. mpv too if it counts.
          But I’m someone who has been running Arch+AwesomeWM for ~15 years ago (been using Arch for even longer). So I probably can’t meaningfully put myself in new users’ shoes.

  • cbazero@programming.dev
    link
    fedilink
    arrow-up
    8
    ·
    9 days ago

    If you compile on windows server the same problem happens. The server is basically gone. So there seems to be some special scheduler configuration in windows client os.

    • SorteKanin@feddit.dkOP
      link
      fedilink
      arrow-up
      1
      ·
      9 days ago

      I wonder if Linux should also provide server and desktop variants like Windows does, with different scheduler settings and such. The use cases are quite different after all, it’s kinda weird they use the same settings.

      • eyeon@lemmy.world
        link
        fedilink
        arrow-up
        3
        ·
        9 days ago

        it’s typically up to the distribution to configure things like that, and many Linux distributions do come in both server and desktop or workstation variants like Ubuntu desktop vs Ubuntu server, or RHEL server vs RHEL Workstation

        I can’t say how well they tune these things as I haven’t ran them personally, but they do exist.

  • While I ultimately think your solution is to use a different scheduler, and that the most useful responses you’ve gotten have been about that; and that I agree with your response that Linux distros should really be tuning the scheduler for the UI by default and let developers and server runners take the burden of tuning differently for their workloads… all that said, I can’t let this comment on your post go by:

    which is good, you want it to compile as fast as possible after all

    If fast compile times are your priority, you’re using the wrong programming language. One of Go’s fundamental principles is fast compile times; even with add-on caching tooling in other languages, Go remains one of the fastest-compiling statically compiled, strongly typed programming languages available. I will not install Haskell programs unless they’re precompiled bin packages, that’s a hard rule. I will only reluctantly install Rust packages, and will always choose bins if available. But I’ll pick a -git Go package without hesitation, because they build crazy fast.

    Anyway, I hope you find the scheduler of your dreams and live happily ever after.

    • SorteKanin@feddit.dkOP
      link
      fedilink
      arrow-up
      8
      ·
      9 days ago

      I only said as fast as possible - I generally think the compile times are fine and not a huge problem. Certainly worth it for all the benefits.

      • Baldur Nil@programming.dev
        link
        fedilink
        arrow-up
        6
        ·
        9 days ago

        There’s no free lunch after all. Go’s quick compilation also means the language is very simple, which means all the complexity shifts to the program’s code.

        • That’s an interesting take - that Go program code is more complex than Rust - if I understood you correctly. I came across a learning curve and cognitive load readability comparison analysis a while back, which I didn’t save and now can’t find. I haven’t needed it before because I think this is the first time I’ve heard anyone suggest that Rust code is less complex than Go.

          Your point about the tradeoff is right, but for different reasons. Go executables have a substantial runtime (with garbage collection, one of those things that make Go code less complex), making them much larger and measurably slower. And then there’s Rust’s vaunted safety, which Go - outside of the most basic compile-time type safety - lacks. Lots of places for Rust to claim superiority in the trade-offs, so it tickles me that you choose the one truly debatable argument, “complexity.”

          • SorteKanin@feddit.dkOP
            link
            fedilink
            arrow-up
            10
            ·
            9 days ago

            Rust is simpler than Go or Python when a system scales.

            A program with 1000 lines will be simplest in Python because it’s just 1000 lines right? Doesn’t matter.

            A program with 1000000 lines will be much easier and simpler to work with in Rust than in Python or Go. The static analysis and the guarantees that the compiler provides suddenly apply to a much larger piece of code, making it more valuable.

            Python offloads type checking to the programmer, meaning that’s cognitive space you gotta use instead of the compiler. Go does the same with error handling and for inexplicable reasons use the billion dollar mistake even though it’s a relatively modern language.

            It is in this way that Rust is simpler than Go and Python. Also, because a system is likely to grow to a larger size over time in a corporate setting, Rust should be preferred in your professional workplace rather than Python or Go. That’s my take on it.

            Honestly, Go is a weird language. It’s so… “basic”. It doesn’t really provide anything new that other languages haven’t done already, perhaps aside from fast static compilation. If it wasn’t because Google was pushing it, I don’t believe Go would ever have become as popular as it is.

          • Baldur Nil@programming.dev
            link
            fedilink
            arrow-up
            3
            ·
            edit-2
            9 days ago

            You’re right that garbage collection makes Go simpler, and maybe other patterns do contribute to prevent complexity from piling up. I never worked with Go outside of silly examples to try it out, so I’m no authority about it.

            What I meant was more of a “general” rule that the simpler a language is, the more code is necessary to express the same thing and then the intent can become nebulous, or the person reading might miss something. Besides, when the language doesn’t offer feature X, it becomes the programmer’s job to manage it, and it creates an extra mental load that can add pesky bugs (ex: managing null safety with extra checks, tracking pointers and bounds checking in C and so on…).

            Also there are studies that show the number of bugs in a software correlate with lines of code, which can mean the software is simply doing more, but also that the more characters you have to read and write, the higher the chance of something to go wrong.

            But yeah, this subject depends on too many variables and some may outweigh others.

    • SorteKanin@feddit.dkOP
      link
      fedilink
      arrow-up
      12
      ·
      edit-2
      9 days ago

      If that is the case, Linux will never be a viable desktop OS alternative.

      Either that needs to change or distributions targeting desktop needs to do it. Maybe we need desktop and server variants of Linux. It kinda makes sense as these use cases are quite different.

      EDIT: I’m curious about the down votes. Do people really believe that it benefits Linux to deprioritise user experience in this way? Do you really think Linux will become an actual commonplace OS if it keeps focusing on “performance” instead of UX?

      • Miaou@jlai.lu
        link
        fedilink
        arrow-up
        3
        ·
        8 days ago

        Linux is already a popular and viable desktop OS - for its target audience.

        The downvote comes from you implying people cannot dev in Linux when its the platform of choice for this workload.

        Now surely the user experience could be polished, but advanced users are at this point used to the workflow, and basic ones will stick to Windows out of inertia no matter what. Therefore the incentive for improving this kind of things is extremely low.

        • SorteKanin@feddit.dkOP
          link
          fedilink
          arrow-up
          2
          ·
          8 days ago

          That might be the case, but that makes me sad though. That implies that Linux is only targeting technical people who are willing to tinker with all these things themselves.

          I would personally want Linux to be broader than that. I’d want it to be the option for everyone - free computing shouldn’t be limited to technical people, it should be provided to all.

      • kenkenken@sh.itjust.works
        link
        fedilink
        English
        arrow-up
        2
        ·
        9 days ago

        “Desktop” Linux exists in this state for decades. Who cares? Maybe we won’t have consumer desktops as a niche soon. Existing users are fine with that. Don’t say you are waiting that Linux will become “a viable desktop OS alternative” in next few years.

        It’s also not about “desktop and sever variants”. Desktop Linux is either conservative or underresourced. Conservatives will told you that you are wrong and there is no issue. And they are major Linux zealots. For the other side someone need to write code and do system design, and there are not many of people for that. So, it’s better not to expect a solution anytime soon, if you are not planning to work on it by yourself.

        • SorteKanin@feddit.dkOP
          link
          fedilink
          arrow-up
          5
          ·
          edit-2
          9 days ago

          “Desktop” Linux exists in this state for decades. Who cares?

          I mean, I’d like to think a lot of people care? I think a lot of people in this community would love if Linux was more widespread and less niche.

          Maybe we won’t have consumer desktops as a niche soon. Existing users are fine with that.

          “Existing users” are not fine with that (I am also an existing user). But even if they were, that is not an attitude that will make Linux into a Windows/macOS competitor.

          Don’t say you are waiting that Linux will become “a viable desktop OS alternative” in next few years.

          We need a viable desktop alternative today or very soon more now than ever before. Microsoft is tightening the noose on Windows 11 and introducing more and more enshittification. Apple also announced AI partnerships recently. We need alternatives.

          It is not good for society for operating systems to be boiled down to two mega-corporate choices. An OS is not something that can be easily made - this is not a space that a competitor can quickly enter and shake things up. If we don’t push MS/Apple off the throne, Linux will stay niche forever and society will suffer.

          • kenkenken@sh.itjust.works
            link
            fedilink
            English
            arrow-up
            1
            ·
            9 days ago

            Society will suffer anyway. It doesn’t make solutions magically appear. You only said why you want it, but not how to do it. To transform GNU/Linux distros into a viable desktop OS is not an easy task, especially when people don’t have a consensus about what it should be.

            • SorteKanin@feddit.dkOP
              link
              fedilink
              arrow-up
              1
              ·
              9 days ago

              Of course - I have actually lately been thinking if Linux is suffering from it’s “decentralisation”. There are so many distributions, all with their own structure and teams behind them. On the one hand, this is great, more choice is almost universally good.

              However, on the other hand, it leads to a much more fractured movement. Imagine instead of there being 100 or whatever distros, there were maybe just like… 5 or 10 or something. I feel like it’d be easier to rally under fewer flags to consolidate effort and avoid double work. But it’s just a thought I’ve had lately.

              • kenkenken@sh.itjust.works
                link
                fedilink
                English
                arrow-up
                1
                ·
                9 days ago

                Distros are unnecessary entities and don’t improve anything here. What is needed it’s separation of the system and the apps, where apps are provided in sandboxed bundles with permissions. It will solve a lot of issues, not only one you have mentioned. And try to imagine amount of years needed for understanding or explaining importance of this to the GNU/Linux community. A viable desktop OS, huh?