Hello,
I have to create around 100k records. Those records are in the csv file and are being loaded using create_fixtures function. It's slow on my development machine but it completes. The problem starts on production where we have memory limits per process which leads to killing the rake process. I think it's because the create_fixtures is importing all the data into memory. Does anyone know how to force it to import smaller chunks (before i cut one big csv into few smaller ones).