My question is about AR transactions feature. Is it thread safe?
Is it safe to use both
ActiveRecord::Base.transaction do ...
and
Account.transaction do ...
statements?
I plan to use Puma as web server, and Sidekiq for background processing. Is there some tricks I should know about?
Thanks!