Allow to use Concurrent::Map#compute_if_absent in a Ractor#1109
Merged
Conversation
- ### Problem
It is currently not possible to use the `compute_if_absent` method
in a Ractor because there is a NULL object used solely as a sentinel
that isn't shareable.
```ruby
Ractor.new do
map = Concurrent::Map.new
map.compute_if_absent(3) do |map, key|
end
end
# Ractor::IsolationError:
# can not access non-shareable objects in constant Concurrent::NULL by non-main ractor.
```
### Solution
I'd like to simply freeze the object being hold in the `NULL`
constant.
19792e7 to
d82f9d6
Compare
4 tasks
bensheldon
approved these changes
Jul 9, 2026
bensheldon
left a comment
Contributor
There was a problem hiding this comment.
Looks correct to me 👍
Would a release sooner rather than later be helpful for Ractor work?
Contributor
Author
|
Thanks for the offer ! This would be super helpful to get a release sooner than later. I'm not seeing any other Ractor fixes for concurrent ruby (we have a backlog of ractor safety issues in a few gems but this was the only in this gem for our current project scope). |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Allow to use Concurrent::Map#compute_if_absent in a Ractor
Problem
It is currently not possible to use the
compute_if_absentmethod in a Ractor because there is a NULL object used solely as a sentinel that isn't shareable.Solution
I'd like to simply freeze the object being hold in the
NULLconstant.