truffleruby
truffleruby copied to clipboard
A high performance implementation of the Ruby programming language, built on GraalVM.
MRI: ``` irb(main):001> RbConfig::CONFIG['host_cpu'] => "arm64" irb(main):002> Gem::Platform.local => # ``` JRuby: ``` irb(main):001:0> RbConfig::CONFIG['host_cpu'] => "arm64" irb(main):002:0> Gem::Platform.local => # ``` TruffleRuby: ``` irb(main):001:0> RbConfig::CONFIG['host_cpu'] => "aarch64" irb(main):002:0> Gem::Platform.local...
Hi there! I'm trying to run a Rails application with TruffleRuby 24.0.1 and it almost works expect one thing : a monkey patch is not applied to the codebase :/...
When running an update on a large dataset I'm seeing a big and steady memory leak with TruffleRuby. The code is proprietary but in essence it is based on a...
John Hawthorn recently wrote a blog post [comparing CRuby and Crystal performance](https://www.johnhawthorn.com/2024/ruby-might-be-faster-than-you-think/). The benchmark uses the [crystalruby gem](https://rubygems.org/gems/crystalruby) to embed Crystal code in Ruby. That gem has a dependency on...
> * Full support for the Ruby 3.2 and Ruby 3.3 syntax by adopting the Prism parser, which is about twice as fast as the old parser. > * Pattern...
In local development I run with `JT_ENV=jvm-ce`. I recently pulled from _master_ and found that I had 12 test failures that I didn't expect. I thought maybe that I had...
Replace Ripper C code with Prism::Translation::Ripper implementation.
Seeing sporadic "dead handle" errors in CI. For example: https://github.com/sparklemotion/nokogiri/actions/runs/8194425716/job/22410492610#step:7:114 Version `truffleruby 23.1.2, like ruby 3.2.2, Oracle GraalVM Native [x86_64-linux]` ``` dead handle 0xbad000000023028 (com.oracle.truffle.api.CompilerDirectives.ShouldNotReachHere) from com.oracle.truffle.api.CompilerDirectives.shouldNotReachHere(CompilerDirectives.java:574) from com.oracle.truffle.api.CompilerDirectives.shouldNotReachHere(CompilerDirectives.java:520) from...
https://travis-ci.org/swisscom/ruby-netsnmp/jobs/617962889?utm_medium=notification&utm_source=github_status @eregon follow up of #1730