Goal: if it works with Ractor, it works with backport
Non-goal: if it fails with Ractor (e.g. attempt to access class variable), it fails with backport. These checks are not present with backport.
Limitations: uses Threads instead of actual actors, so still subject to GIL and won't have the actual performance of Ractor (of course 😅)
Goal: if it works with
Ractor
, it works with backport Non-goal: if it fails withRactor
(e.g. attempt to access class variable), it fails with backport. These checks are not present with backport. Limitations: usesThread
s instead of actual actors, so still subject to GIL and won't have the actual performance ofRactor
(of course 😅)