#ractors

[ follow ]
fromRubyflow
7 hours ago
Ruby on Rails

CRuby threads don't give you real parallelism, the GVL blocks it.

Ractors enable real parallelism in Ruby by using per-ractor locking instead of a single global lock, while enforcing strict object isolation to prevent data races.
[ Load more ]