How to do performance test without rebuild the test database? Rails.
- by Cheng
I would like to do some performace test to a Rails app.
I want to test the app with real world data, which is 100 MB in size.
The problem is, Rails's test environment always rebuild the database from fixtures, which always overwritten the real world data.
So how should I do the performance test?