Brandon Fish
Brandon Fish
Would there be any issue with doing the following in rails? ``` Time.use_zone('Pacific Time (US & Canada)') do Chronic.time_class = Time.zone Chronic.parse("Sunday") end ``` Thank you
I ran the benchmark from the linked issue. It appears to be a longer running benchmark now and ran `~2.6x` faster on native truffleruby: ``` bundle install brew install axel...
A minimal reproduction for this is `jt ruby -w -e 'module Kernel; def warn(m); $stderr.puts(m); end; end; p nil =~ "test" '`.
@brauliobo Do you have steps or some example code to reproduce this error? Thanks.
cc: @jirkamarsik @djoooooe
@eregon I suspect `d_type` works on macOS after seeing some straces from MRI. There appears to be 2 extra lstat in TruffleRuby for every file path currently. I believe this...
@brauliobo Do you have steps or some example code to reproduce this error? Thanks.
I was running this today and here's what I found: I also saw pauses between batches of jobs, although short ones, for native but not jvm. Using the `--vm.XX:+PrintGC` I...
This may be related to the memory issue in #2549.
@brauliobo I wanted to add that it would be good to report the memory used by the process since the JVM may use native memory not reported in `visualvm`. This...