I just got started with rails, and when I testing in development mode, I see in the logs that my Mailer action is taking 1175ms. Is there anyway to find out what exactly is the slow step?
Also, there is a line that says (View:2, DB:1). I assume the DB means number of database lookups, but what about the view?
You can try reading the benchmarking and profiling guide to learn how to find bottlenecks.
Also, the
View: 2, DB: 1actually refers to the time spent in milliseconds in each part.