home.social

#rubyperformance — Public Fediverse posts

Live and recent posts from across the Fediverse tagged #rubyperformance, aggregated by home.social.

  1. 👨‍💻 Ruby's #JIT mysteries unveiled! Spoiler: it's just a fancy way to say "we made it magically faster"—or so they claim. 🤔 Meanwhile, mere mortals like us are left to ponder what all these acronyms mean while our #Ruby apps take their sweet time to load. 🚀✨
    railsatscale.com/2025-09-08-ho #RubyPerformance #TechMysteries #SoftwareDevelopment #RubyOnRails #HackerNews #ngated

  2. 🚀🎩 Behold, a Ruby wizard pulls a sleight of hand to make Ruby faster than itself by... not actually using Ruby! 🤯✨ In a groundbreaking revelation, if you don’t run your code, it’s infinitely faster! Next up, how to win a marathon by standing still. 🏃‍♂️💨
    noteflakes.com/articles/2025-0 #RubyPerformance #MagicTricks #CodingHumor #HackerNews #Innovation #HackerNews #ngated

  3. Hi Rails developers, if you want to boost your Rails app's performance then this article provides a clear, up-to-date guide on Structs and Classes in Ruby 3.4.2. Discover how to choose the right data structure for optimal speed and write more efficient, maintainable code.

    Read it here: reinteractive.com/articles/rub

    #Rails #rubyonrails #RubyPerformance #SoftwareDevelopment #CodingTips #reinteractive

  4. What do Ruby folks mean when they say "using Ruby code generation for performance optimization"? Does "code generation" mean meta programming? Do you know a (simple) example where Ruby code generation is used as a strategy for optimization?

    #ruby #RubyPerformance #optimization

  5. I'm working on some updates to my Torid gem - and thinking about performance. I now have the situation where I have 2 implementations of the same function, one that is more performant when JIT is enabled, and one that is more performant, when JIT is not enabled.

    Thoughts on how to manage this? Should I ship both with a load/parse time switch that detects if jit is enabled and then uses the right one? Just ship the jit one, just ship the base one?

    #ruby #yjit #performance #rubyperformance