All that I will do is insert records into the database. However, I would definitly like the database-independence that Ruby/ActiveRecord can offer me.
What would be the reccommended choice?
- Using simple insert queries, and rewriting them, and also maintaining my own database class for things as batch insertions;
- Using the power of ActiveRecord, but also having the overhead;
- Some other solution, mayhaps?
For the record, optimistically speaking I'll be doing an insertion per second/couple of seconds. I'll also (probably) be using ActiveRecord for reading from the database later on - but, in a different application.