Extraction of the ActiveRecord::Base#import functionality from ar-extensions for Rails 3 and beyon
Go to file
Zach Dennis 83c3dedf96 Bump version to 0.1.0. 2010-08-10 21:44:45 -04:00
benchmarks Restructuring directories. 2010-06-26 15:43:34 -04:00
lib/activerecord-import Moved all adapter specific code into adapters/ directory and updated all adapters to utilize the same "require_adapter" method of loading specific-database adapters. 2010-08-10 20:46:32 -04:00
test Initial work for re-packaging as gem. 2010-08-10 21:39:26 -04:00
.gitignore Initial work for re-packaging as gem. 2010-08-10 21:39:26 -04:00
Gemfile Initial work for re-packaging as gem. 2010-08-10 21:39:26 -04:00
README.markdown Updating README 2010-08-10 21:44:35 -04:00
Rakefile Initial work for re-packaging as gem. 2010-08-10 21:39:26 -04:00
VERSION Bump version to 0.1.0. 2010-08-10 21:44:45 -04:00

README.markdown

activerecord-import

activerecord-import is a library for bulk inserting data using ActiveRecord. By default with ActiveRecord, in order to insert multiple records you have to perform individual save operations on each model, like so:

10.times do |i|
  Book.create! :name => "book #{i}"
end

This may work fine if all you have is 10 records, but if you have hundreds, thousands, or millions of records it can turn into a nightmare. This is where activerecord-import comes into play. Here's the equivalent behaviour using the #import method:

books = []
10.times{ |i| books << Book.new(:name => "book #{i}") }
Book.import books

Pretty slick, eh?

Maybe, just maybe you're thinking, why do I have do instantiate ActiveRecord objects? Will that perform validations? What if I don't want validations? What if I want to take advantage of features like MySQL's on duplicate key update? Well, activerecord-import handles all of these cases and more!

For more documentation on the matter you can refer to two places:

  1. activerecord-import github wiki: http://wiki.github.com/zdennis/activerecord-import/
  2. the tests in the code base

Upgrading from ar-extensions

This library replaces the ar-extensions library and is compatible with Rails 3. It provides the exact same API for importing data, but it does not include any additional ar-extensions functionality.

License

This is licensed under the ruby license.

Author

Zach Dennis (zach.dennis@gmail.com)

Contributors

  • Blythe Dunham
  • Gabe da Silveira
  • Henry Work
  • James Herdman
  • Marcus Crafter
  • Thibaud Guillaume-Gentil
  • Mark Van Holstyn
  • Victor Costan