I have an import script that uses ActiveRecord, but it is generating a single transaction per SQL query. My import script is also threaded, so I don’t want to use ActiveRecord::Base.transaction {} blocks in my threads. Is there a config option that will just let me turn off transactions altogether?
Thanks, David Balatero