If you run the application in a development environment, it must reload many application files for each request. That would be my guess about why it took so long.
You can try going to environments/development.rb and setting config.cache_classes = true to see what effect it has on the rendering time, but remember to change it to config.cache_classes = false and restart the server as soon as you are done.
source share