Created
December 28, 2010 21:23
-
-
Save ch1ago/757738 to your computer and use it in GitHub Desktop.
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
r3@r3:~/apps/ex1$ rails s | |
=> Booting WEBrick | |
=> Rails 3.0.0 application starting in development on http://0.0.0.0:3000 | |
=> Call with -d to detach | |
=> Ctrl-C to shutdown server | |
[2010-12-28 20:19:33] INFO WEBrick 1.3.1 | |
[2010-12-28 20:19:33] INFO ruby 1.9.2 (2010-08-18) [i686-linux] | |
[2010-12-28 20:19:33] INFO WEBrick::HTTPServer#start: pid=4869 port=3000 | |
#3 testes sem action_cache | |
Started GET "/s" for 127.0.0.1 at 2010-12-28 20:19:57 -0200 | |
Processing by SiteController#search as HTML | |
Rendered parts/_search_box.html.erb (3.6ms) | |
Rendered site/search.html.erb within layouts/application (194.6ms) | |
Completed 200 OK in 215ms (Views: 214.3ms | ActiveRecord: 0.0ms) | |
Started GET "/s" for 127.0.0.1 at 2010-12-28 20:20:04 -0200 | |
Processing by SiteController#search as HTML | |
Rendered parts/_search_box.html.erb (12.0ms) | |
Rendered site/search.html.erb within layouts/application (321.3ms) | |
Completed 200 OK in 349ms (Views: 347.9ms | ActiveRecord: 0.0ms) | |
Started GET "/s" for 127.0.0.1 at 2010-12-28 20:20:10 -0200 | |
Processing by SiteController#search as HTML | |
Rendered parts/_search_box.html.erb (3.0ms) | |
Rendered site/search.html.erb within layouts/application (200.8ms) | |
Completed 200 OK in 213ms (Views: 211.2ms | ActiveRecord: 0.0ms) | |
#implantei action_cache | |
Started GET "/s" for 127.0.0.1 at 2010-12-28 20:20:22 -0200 | |
Processing by SiteController#search as HTML | |
Read fragment views/0.0.0.0:3000/s (0.3ms) | |
Rendered parts/_search_box.html.erb (2.3ms) | |
Rendered site/search.html.erb within layouts/application (321.5ms) | |
Write fragment views/0.0.0.0:3000/s (28.1ms) | |
Completed 200 OK in 369ms (Views: 337.7ms | ActiveRecord: 0.0ms) | |
#3 testes depoooois do action_cache | |
Started GET "/s" for 127.0.0.1 at 2010-12-28 20:20:32 -0200 | |
Processing by SiteController#search as HTML | |
Read fragment views/0.0.0.0:3000/s (0.6ms) | |
Completed 200 OK in 2ms | |
Started GET "/s" for 127.0.0.1 at 2010-12-28 20:20:37 -0200 | |
Processing by SiteController#search as HTML | |
Read fragment views/0.0.0.0:3000/s (0.4ms) | |
Completed 200 OK in 2ms | |
Started GET "/s" for 127.0.0.1 at 2010-12-28 20:20:40 -0200 | |
Processing by SiteController#search as HTML | |
Read fragment views/0.0.0.0:3000/s (0.5ms) | |
Completed 200 OK in 13ms | |
:D |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment