I have a Sqlite database that I'm using Ruby's Sequel to insert data into.
When attempting to insert 1M+ items it seems to be quite slow.
The code I'm using to do this is below.
DB[:my_table].multi_insert to_insert
Are there any faster ways to do this? Am I missing something?