How to do performance test without rebuild the test database? Rails.
        Posted  
        
            by Cheng
        on Stack Overflow
        
        See other posts from Stack Overflow
        
            or by Cheng
        
        
        
        Published on 2010-04-12T14:09:35Z
        Indexed on 
            2010/04/12
            14:13 UTC
        
        
        Read the original article
        Hit count: 338
        
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?
© Stack Overflow or respective owner