In practical perspectives, I’m mostly concerned about computer resources usage; I have computer resources constraints. So using Rust would benefit on that. But it is for a Web application backend. So, is it worth it having to learn Rust + Tokio + Axum, … in this specific situation? Also, that this is mostly for initially prototyping an application. Also considering if I add developers in the future, they would most likely not be familiar with Rust, but with more popular frameworks such as Node.

  • illectrility
    link
    fedilink
    208 months ago

    Learning Rust is probably always worth it. It’s more efficient, lasts longer and is safer, I would try it

  • @[email protected]
    link
    fedilink
    118 months ago

    Consider the constraints and select technology accordingly. You mention being concerned about compute resources, try to elaborate on that.

    Are you doing it for ideological purposes? Is your hardware exceptionally constrained? Economical limitations? You will necessarily spend a lot more time compiling when using Rust, so that might eat up any compute savings if the scale of the project is small enough.

    If time is a concern at all, then learning a different stack is almost always going to be a losing proposition. Rust is also not the most prototyping-friendly language in my experience - hacking together stuff in Python is almost always going to be faster - but it’s by no means impossible.

    If for educational purposes, then I recommend Rust, as it is fun and teaches you new ways of thinking about your code.

    Finally, the fact that few people know Rust is a real underrated disadvantage you definitely want to consider.

    Best of luck with your endeavor.

  • @[email protected]
    link
    fedilink
    98 months ago

    I mean, what kind of resource constraints are we talking about? If it’s low-powered hardware that can’t run Node.js, then it’s obviously going to be worth it…

  • @[email protected]
    link
    fedilink
    English
    7
    edit-2
    8 months ago

    For prototyping, if you don’t already know Rust, it’s probably not worth it.

    When you really know Rust it’s IMO easier to write a web server in Rust than node, but there is a long road to getting to that level.

    • fr33d0m3
      link
      fedilink
      08 months ago

      @anlumo @nyl you wouldn’t prototype a software using a tool that’s made for speed and memory safety. Rather aim for a tracing bullet. Prototypes are imho a waste of time

      • @[email protected]
        link
        fedilink
        38 months ago

        I think prototypes are fine to answer specific questions. However, I think it’s often the case that management doesn’t understand what a prototype is and thinks that this is just the alpha release of the real product.

        Rule of thumb: if you don’t throw away all of the code after having answered that question you were writing it for, it’s not a prototype.

        • @nous
          link
          English
          18 months ago

          Because of that prototypes should be small - no more than a week or so worth of effort. Anything larger means it will take even longer to rewrite it from scratch which management will never like and is overall just a waste of time. Most of the time you don’t actually want a prototype - you want a MVP written in the language of the final project as it will become the final product.

          Really the only time I would write a prototype in a different language then the final product is when you don’t yet know the language you want to (or more likely, need to) use or you know another language vastly more than the target language. The time saved by the language is often just not worth it overall when you are reasonably competent in both languages.

  • @[email protected]
    cake
    link
    fedilink
    6
    edit-2
    8 months ago

    I think if you know Rust then I think Rust + async is going to perform better and consume less resources than NodeJS by a LOT. It should also work more reliably on embedded devices, or even docker containers because memory isn’t going up and down like a yoyo because of GC.

    That said NodeJS is more immediate and might lend itself to better prototyping / RAD and you might not care enough about performance to justify using a compiled language. A lot of web servers aren’t doing enough that you would even notice a difference in performance.

    Another reason for Rust might also be because it’s more energy efficient. I wish Amazon and other cloud services would put a heavier cost penalty on efficiency. I wonder how many cloud web apps are running bloated stacks to serve up content which could be done with a fraction of the energy.

  • TehPers
    link
    fedilink
    English
    18 months ago

    This highly depends on what it is you’re trying to build. If it’s a simple CRUD backend + database, then there’s really no reason to use Rust except if you just want to. If it’s doing heavy computation, then you’d want to benchmark both and see if any potential gains by writing it in Rust are worth the effort of using Rust over Node.js.

    Practically speaking, it’s really uncommon to need to write a backend in Rust over something like JS or Python. Usually that’s only needed for high throughput services (like Cloudflare’s proxy service which handles trillions of daily requests), or ones performing computationally expensive work they can’t offload to another service (after benchmarking first of course).

    • @[email protected]
      link
      fedilink
      18 months ago

      If it’s a simple CRUD backend + database, then there’s really no reason to use Rust except if you just want to.

      I did this. Further reasons are: correctness and performance.

      Rust is much faster while at the same time using a fraction of the resources the equivalent Spring Boot implementation would use. The type safety and being freed from runtime errors is awesome as well. Yes initial development takes longer, but I believe it is worth it. Most projects spend maybe 2% on initial development, 98% is bugfixing, troubleshooting, refactoring. I am confident Rust cuts down on bugfixing by 2/3, which means doubling the initial dev time is well worth it. And it doesn’t even take twice as long.

      • TehPers
        link
        fedilink
        English
        28 months ago

        For very simple backends, it’s very unlikely you’ll get any significant number of bugs with an experienced team, and if performance isn’t really a concern, then Rust being faster isn’t really relevant. For anything more complex than a simple backend, I’d agree that Rust becomes a lot more appealing, but if you just need to throw together something that handles user profiles or something in a very simple manner, it really doesn’t make a difference what language you do it in as long as you write a few tests to make sure everything works.

    • @nous
      link
      English
      18 months ago

      If it’s a simple CRUD backend + database, then there’s really no reason to use Rust except if you just want to.

      What? There are loads of reasons beyond just want preformance. Rust has been voted the most loved language in stackoverflows survey for many years now - that alone is a good enough reason to use any language: because you like it. But aside from that, rust programs tend to have far fewer bugs in them and cause far fewer problems in production environments. Rust programs are far easier to refactor, especially than loosely typed languages like JS and Python, as the compiler will tell you everywhere you need to update. And many more reasons why you might want to use rust.

      it’s really uncommon to need to write a backend in Rust over something like JS or Python

      It is really uncommon to need to write a backend in any language. Most languages can do it just fine and there is never really a need to pick one language over another. You can write a backend in any main stream language you like, including rust. And rust gives plenty of reasons why you might want to pick it over Python or JS.

      Yeah it is not a language for everyone. And there are also plenty of reasons to want to pick other languages - its learning curve is a big one. But acting like there is no reason other than performance to pick rust over any other language is just plain wrong.