Created
January 12, 2012 16:31
-
-
Save sgharms/1601458 to your computer and use it in GitHub Desktop.
GET /tasks Rails log
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#=============================================================================== | |
## INITIAL PAGE VISIT ## | |
#=============================================================================== | |
GET /tasks (no params) | |
Processing by TasksController#index as HTML | |
Employee Load (0.5ms) SELECT "employees".* FROM "employees" WHERE "employees"."id" = 1 LIMIT 1 | |
Task Load (0.9ms) SELECT DISTINCT(completed_on) FROM "tasks" WHERE "tasks"."employee_id" = 1 AND (completed_on <= '2012-01-12') ORDER BY completed_on DESC LIMIT 5 | |
Task Load (0.7ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."employee_id" = 1 AND (completed_on >= '2011-07-10') | |
Project Load (0.6ms) SELECT "projects".* FROM "projects" | |
Client Load (0.5ms) SELECT "clients".* FROM "clients" WHERE "clients"."id" = 1 LIMIT 1 | |
Task Load (0.5ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."employee_id" = 1 AND "tasks"."completed_on" IN ('2012-01-04', '2011-12-26') ORDER BY completed_on DESC | |
Project Load (0.4ms) SELECT "projects".* FROM "projects" WHERE "projects"."id" = 1 LIMIT 1 | |
CACHE (0.0ms) SELECT "clients".* FROM "clients" WHERE "clients"."id" = 1 LIMIT 1 | |
CACHE (0.0ms) SELECT "projects".* FROM "projects" WHERE "projects"."id" = 1 LIMIT 1 | |
CACHE (0.0ms) SELECT "clients".* FROM "clients" WHERE "clients"."id" = 1 LIMIT 1 | |
CACHE (0.0ms) SELECT "projects".* FROM "projects" WHERE "projects"."id" = 1 LIMIT 1 | |
CACHE (0.0ms) SELECT "clients".* FROM "clients" WHERE "clients"."id" = 1 LIMIT 1 | |
Rendered tasks/index.html.haml within layouts/application (61.6ms) | |
Rendered layouts/_head.html.haml (34.2ms) | |
Rendered layouts/_nav.html.haml (7.7ms) | |
Rendered layouts/_footer.html.haml (2.1ms) | |
Completed 200 OK in 4579ms (Views: 421.0ms | ActiveRecord: 14.0ms) | |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment