We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 86e9071 commit 14aa23bCopy full SHA for 14aa23b
lib/concurrent/map.rb
@@ -18,6 +18,9 @@ module Collection
18
when 'rbx'
19
require 'concurrent/collection/map/atomic_reference_map_backend'
20
AtomicReferenceMapBackend
21
+ when 'jruby+truffle'
22
+ require 'concurrent/collection/map/atomic_reference_map_backend'
23
+ AtomicReferenceMapBackend
24
else
25
warn 'Concurrent::Map: unsupported Ruby engine, using a fully synchronized Concurrent::Map implementation' if $VERBOSE
26
require 'concurrent/collection/map/synchronized_map_backend'
0 commit comments