I have EventsController create action that looks like this:
class EventsController < ApplicationController
def create
@event = Event.new(params[:event].slice(*Event.accessible_attributes))
if @event.save
DraftBuilder.new(event: @event).build(params[:event][:file].path)
redirect_to @event
else
render :new
end
end
end
params[:event][:file] is a file that user can submit through Event#new action via file_field_tag.
DraftBuilder#build method, among many other things, parses a given file and creates about 1000 records in a database(saves data to database across several tables).
Problem I have is that DraftBuilder#build is really slow. It is slow because I'am saving records in a loop and Active Record creates new transaction for every save.
Simplified DraftBuilder#build might look like this:
class DraftBuilder
def build(file)
@data = parse(file) #@data is an array of hashes with 1000+ records
@data.each do |pick_arguments|
Pick.create(pick_arguments)
end
end
end
I found one solution to this problem. Wrap controller create action in to ActiveRecord::Base.transaction:
class EventsController < ApplicationController
around_filter :transactions_filter, only: [:create]
def transactions_filter
ActiveRecord::Base.transaction do
yield
end
end
end
While this solution is working, creates just one transaction, and speeds the whole process by about 60 times. Is it a good way to tackle this problem?? Surely transactions haven't been design for this?? What are the other options for creating records from files with more then thousand entries??

