I'm trying to understand this line in the rails log
If my views only took 50.9ms why is it taking 652ms?
Thanks
If you're running your application in the development environment it has to reload a lot of your application's files on every request. That would be my guess as to why it's taking so long.
You could try going into environments/development.rb
and setting config.cache_classes = true
to see what kind of effect this has on your render times, but remember to change this back to config.cache_classes = false
and restart your server once you're done.
If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!
Donate Us With