This email (including any attachments) is confidential and may be
legally privileged. If you received this email in error, please delete
it immediately and do not copy it or use it for any purpose or disclose
its contents to any other person. Thank you.
This email (including any attachments) is confidential and may be
legally privileged. If you received this email in error, please delete
it immediately and do not copy it or use it for any purpose or disclose
its contents to any other person. Thank you.
Which classes are you referring to that aren’t multi-threaded? Some of
the
core Ruby classes are not thread safe but there are ways to make them
thread
safe. For example, to make arrays thread safe, define this somewhere:
require ‘jruby/synchronized’
class Array
include JRuby::Synchronized
end