rails 2.2.3 → 2.3.2

Sign up to get free protection for your applications and to get access to all the features.

Potentially problematic release.


This version of rails might be problematic. Click here for more details.

Files changed (229) hide show
  1. data/CHANGELOG +272 -191
  2. data/MIT-LICENSE +1 -1
  3. data/README +6 -19
  4. data/Rakefile +24 -71
  5. data/bin/rails +1 -0
  6. data/builtin/rails_info/rails/info.rb +12 -8
  7. data/configs/databases/mysql.yml +3 -0
  8. data/configs/initializers/backtrace_silencers.rb +7 -0
  9. data/configs/initializers/new_rails_defaults.rb +2 -0
  10. data/configs/initializers/session_store.rb +15 -0
  11. data/dispatches/config.ru +7 -0
  12. data/doc/README_FOR_APP +2 -5
  13. data/environments/boot.rb +1 -0
  14. data/environments/environment.rb +14 -48
  15. data/environments/production.rb +11 -7
  16. data/environments/test.rb +6 -0
  17. data/helpers/application_controller.rb +10 -0
  18. data/helpers/test_helper.rb +1 -1
  19. data/html/500.html +0 -3
  20. data/html/index.html +1 -0
  21. data/lib/commands/about.rb +1 -1
  22. data/lib/commands/dbconsole.rb +18 -2
  23. data/lib/commands/plugin.rb +4 -3
  24. data/lib/commands/runner.rb +13 -7
  25. data/lib/commands/server.rb +98 -33
  26. data/lib/console_app.rb +4 -4
  27. data/lib/console_with_helpers.rb +2 -23
  28. data/lib/dispatcher.rb +1 -1
  29. data/lib/fcgi_handler.rb +12 -10
  30. data/lib/initializer.rb +108 -41
  31. data/lib/rails/backtrace_cleaner.rb +54 -0
  32. data/lib/rails/gem_dependency.rb +124 -94
  33. data/lib/rails/plugin.rb +49 -6
  34. data/lib/rails/plugin/loader.rb +66 -27
  35. data/lib/rails/plugin/locator.rb +1 -1
  36. data/lib/rails/rack.rb +3 -1
  37. data/lib/rails/rack/debugger.rb +21 -0
  38. data/lib/rails/rack/log_tailer.rb +35 -0
  39. data/lib/rails/rack/metal.rb +51 -0
  40. data/lib/rails/rack/static.rb +15 -4
  41. data/lib/rails/version.rb +2 -2
  42. data/lib/rails_generator/base.rb +3 -0
  43. data/lib/rails_generator/commands.rb +8 -3
  44. data/lib/rails_generator/generators/applications/app/app_generator.rb +210 -136
  45. data/lib/rails_generator/generators/applications/app/scm/git.rb +16 -0
  46. data/lib/rails_generator/generators/applications/app/scm/scm.rb +8 -0
  47. data/lib/rails_generator/generators/applications/app/scm/svn.rb +7 -0
  48. data/lib/rails_generator/generators/applications/app/template_runner.rb +401 -0
  49. data/lib/rails_generator/generators/components/controller/USAGE +12 -11
  50. data/lib/rails_generator/generators/components/controller/controller_generator.rb +7 -1
  51. data/lib/rails_generator/generators/components/controller/templates/helper_test.rb +4 -0
  52. data/lib/rails_generator/generators/components/helper/USAGE +24 -0
  53. data/lib/rails_generator/generators/components/helper/helper_generator.rb +25 -0
  54. data/lib/rails_generator/generators/components/helper/templates/helper.rb +2 -0
  55. data/lib/rails_generator/generators/components/helper/templates/helper_test.rb +4 -0
  56. data/lib/rails_generator/generators/components/metal/USAGE +8 -0
  57. data/lib/rails_generator/generators/components/metal/metal_generator.rb +8 -0
  58. data/lib/rails_generator/generators/components/metal/templates/metal.rb +12 -0
  59. data/lib/rails_generator/generators/components/resource/USAGE +2 -2
  60. data/lib/rails_generator/generators/components/resource/resource_generator.rb +2 -0
  61. data/lib/rails_generator/generators/components/resource/templates/helper_test.rb +4 -0
  62. data/lib/rails_generator/generators/components/scaffold/scaffold_generator.rb +2 -0
  63. data/lib/rails_generator/generators/components/scaffold/templates/controller.rb +1 -1
  64. data/lib/rails_generator/generators/components/scaffold/templates/functional_test.rb +4 -4
  65. data/lib/rails_generator/generators/components/scaffold/templates/helper_test.rb +4 -0
  66. data/lib/rails_generator/generators/components/scaffold/templates/layout.html.erb +1 -1
  67. data/lib/rails_generator/generators/components/scaffold/templates/view_edit.html.erb +2 -2
  68. data/lib/rails_generator/generators/components/scaffold/templates/view_index.html.erb +2 -2
  69. data/lib/rails_generator/generators/components/scaffold/templates/view_new.html.erb +2 -2
  70. data/lib/rails_generator/generators/components/scaffold/templates/view_show.html.erb +1 -1
  71. data/lib/rails_generator/secret_key_generator.rb +2 -0
  72. data/lib/tasks/databases.rake +13 -6
  73. data/lib/tasks/documentation.rake +2 -9
  74. data/lib/tasks/framework.rake +26 -1
  75. data/lib/tasks/gems.rake +33 -48
  76. data/lib/tasks/middleware.rake +7 -0
  77. data/lib/tasks/misc.rake +7 -0
  78. data/lib/tasks/statistics.rake +0 -1
  79. data/lib/tasks/testing.rake +5 -5
  80. data/lib/tasks/tmp.rake +2 -2
  81. data/lib/test_help.rb +16 -8
  82. metadata +92 -159
  83. data/bin/performance/request +0 -3
  84. data/bin/process/inspector +0 -3
  85. data/bin/process/reaper +0 -3
  86. data/bin/process/spawner +0 -3
  87. data/config.ru +0 -17
  88. data/configs/apache.conf +0 -40
  89. data/configs/lighttpd.conf +0 -54
  90. data/doc/guides/html/2_2_release_notes.html +0 -1185
  91. data/doc/guides/html/actioncontroller_basics.html +0 -1270
  92. data/doc/guides/html/activerecord_validations_callbacks.html +0 -749
  93. data/doc/guides/html/association_basics.html +0 -2585
  94. data/doc/guides/html/authors.html +0 -240
  95. data/doc/guides/html/benchmarking_and_profiling.html +0 -1018
  96. data/doc/guides/html/caching_with_rails.html +0 -583
  97. data/doc/guides/html/command_line.html +0 -434
  98. data/doc/guides/html/configuring.html +0 -438
  99. data/doc/guides/html/creating_plugins.html +0 -1594
  100. data/doc/guides/html/debugging_rails_applications.html +0 -1175
  101. data/doc/guides/html/finders.html +0 -1090
  102. data/doc/guides/html/form_helpers.html +0 -638
  103. data/doc/guides/html/getting_started_with_rails.html +0 -2066
  104. data/doc/guides/html/index.html +0 -349
  105. data/doc/guides/html/layouts_and_rendering.html +0 -1406
  106. data/doc/guides/html/migrations.html +0 -921
  107. data/doc/guides/html/routing_outside_in.html +0 -2213
  108. data/doc/guides/html/security.html +0 -1346
  109. data/doc/guides/html/testing_rails_applications.html +0 -1859
  110. data/doc/guides/source/2_2_release_notes.txt +0 -435
  111. data/doc/guides/source/actioncontroller_basics/changelog.txt +0 -5
  112. data/doc/guides/source/actioncontroller_basics/cookies.txt +0 -34
  113. data/doc/guides/source/actioncontroller_basics/csrf.txt +0 -32
  114. data/doc/guides/source/actioncontroller_basics/filters.txt +0 -119
  115. data/doc/guides/source/actioncontroller_basics/http_auth.txt +0 -24
  116. data/doc/guides/source/actioncontroller_basics/index.txt +0 -40
  117. data/doc/guides/source/actioncontroller_basics/introduction.txt +0 -9
  118. data/doc/guides/source/actioncontroller_basics/methods.txt +0 -39
  119. data/doc/guides/source/actioncontroller_basics/parameter_filtering.txt +0 -14
  120. data/doc/guides/source/actioncontroller_basics/params.txt +0 -93
  121. data/doc/guides/source/actioncontroller_basics/request_response_objects.txt +0 -43
  122. data/doc/guides/source/actioncontroller_basics/rescue.txt +0 -67
  123. data/doc/guides/source/actioncontroller_basics/session.txt +0 -187
  124. data/doc/guides/source/actioncontroller_basics/streaming.txt +0 -91
  125. data/doc/guides/source/actioncontroller_basics/verification.txt +0 -40
  126. data/doc/guides/source/active_record_basics.txt +0 -181
  127. data/doc/guides/source/activerecord_validations_callbacks.txt +0 -404
  128. data/doc/guides/source/association_basics.txt +0 -1840
  129. data/doc/guides/source/authors.txt +0 -39
  130. data/doc/guides/source/benchmarking_and_profiling/appendix.txt +0 -95
  131. data/doc/guides/source/benchmarking_and_profiling/digging_deeper.txt +0 -105
  132. data/doc/guides/source/benchmarking_and_profiling/edge_rails_features.txt +0 -185
  133. data/doc/guides/source/benchmarking_and_profiling/gameplan.txt +0 -27
  134. data/doc/guides/source/benchmarking_and_profiling/index.txt +0 -242
  135. data/doc/guides/source/benchmarking_and_profiling/rubyprof.txt +0 -179
  136. data/doc/guides/source/benchmarking_and_profiling/statistics.txt +0 -57
  137. data/doc/guides/source/caching_with_rails.txt +0 -367
  138. data/doc/guides/source/command_line.txt +0 -147
  139. data/doc/guides/source/configuring.txt +0 -225
  140. data/doc/guides/source/creating_plugins/acts_as_yaffle.txt +0 -191
  141. data/doc/guides/source/creating_plugins/appendix.txt +0 -46
  142. data/doc/guides/source/creating_plugins/controllers.txt +0 -59
  143. data/doc/guides/source/creating_plugins/core_ext.txt +0 -123
  144. data/doc/guides/source/creating_plugins/custom_route.txt +0 -69
  145. data/doc/guides/source/creating_plugins/gem.txt +0 -1
  146. data/doc/guides/source/creating_plugins/generator_method.txt +0 -89
  147. data/doc/guides/source/creating_plugins/helpers.txt +0 -51
  148. data/doc/guides/source/creating_plugins/index.txt +0 -52
  149. data/doc/guides/source/creating_plugins/migration_generator.txt +0 -156
  150. data/doc/guides/source/creating_plugins/models.txt +0 -76
  151. data/doc/guides/source/creating_plugins/odds_and_ends.txt +0 -69
  152. data/doc/guides/source/creating_plugins/test_setup.txt +0 -230
  153. data/doc/guides/source/debugging_rails_applications.txt +0 -733
  154. data/doc/guides/source/finders.txt +0 -668
  155. data/doc/guides/source/form_helpers.txt +0 -345
  156. data/doc/guides/source/getting_started_with_rails.txt +0 -1256
  157. data/doc/guides/source/images/belongs_to.png +0 -0
  158. data/doc/guides/source/images/bullet.gif +0 -0
  159. data/doc/guides/source/images/csrf.png +0 -0
  160. data/doc/guides/source/images/habtm.png +0 -0
  161. data/doc/guides/source/images/has_many.png +0 -0
  162. data/doc/guides/source/images/has_many_through.png +0 -0
  163. data/doc/guides/source/images/has_one.png +0 -0
  164. data/doc/guides/source/images/has_one_through.png +0 -0
  165. data/doc/guides/source/images/header_backdrop.png +0 -0
  166. data/doc/guides/source/images/icons/README +0 -5
  167. data/doc/guides/source/images/icons/callouts/1.png +0 -0
  168. data/doc/guides/source/images/icons/callouts/10.png +0 -0
  169. data/doc/guides/source/images/icons/callouts/11.png +0 -0
  170. data/doc/guides/source/images/icons/callouts/12.png +0 -0
  171. data/doc/guides/source/images/icons/callouts/13.png +0 -0
  172. data/doc/guides/source/images/icons/callouts/14.png +0 -0
  173. data/doc/guides/source/images/icons/callouts/15.png +0 -0
  174. data/doc/guides/source/images/icons/callouts/2.png +0 -0
  175. data/doc/guides/source/images/icons/callouts/3.png +0 -0
  176. data/doc/guides/source/images/icons/callouts/4.png +0 -0
  177. data/doc/guides/source/images/icons/callouts/5.png +0 -0
  178. data/doc/guides/source/images/icons/callouts/6.png +0 -0
  179. data/doc/guides/source/images/icons/callouts/7.png +0 -0
  180. data/doc/guides/source/images/icons/callouts/8.png +0 -0
  181. data/doc/guides/source/images/icons/callouts/9.png +0 -0
  182. data/doc/guides/source/images/icons/caution.png +0 -0
  183. data/doc/guides/source/images/icons/example.png +0 -0
  184. data/doc/guides/source/images/icons/home.png +0 -0
  185. data/doc/guides/source/images/icons/important.png +0 -0
  186. data/doc/guides/source/images/icons/next.png +0 -0
  187. data/doc/guides/source/images/icons/note.png +0 -0
  188. data/doc/guides/source/images/icons/prev.png +0 -0
  189. data/doc/guides/source/images/icons/tip.png +0 -0
  190. data/doc/guides/source/images/icons/up.png +0 -0
  191. data/doc/guides/source/images/icons/warning.png +0 -0
  192. data/doc/guides/source/images/polymorphic.png +0 -0
  193. data/doc/guides/source/images/rails_logo_remix.gif +0 -0
  194. data/doc/guides/source/images/ruby_on_rails_by_mike_rundle2.gif +0 -0
  195. data/doc/guides/source/images/session_fixation.png +0 -0
  196. data/doc/guides/source/index.txt +0 -118
  197. data/doc/guides/source/layouts_and_rendering.txt +0 -982
  198. data/doc/guides/source/migrations/anatomy_of_a_migration.txt +0 -85
  199. data/doc/guides/source/migrations/changelog.txt +0 -5
  200. data/doc/guides/source/migrations/creating_a_migration.txt +0 -109
  201. data/doc/guides/source/migrations/foreign_keys.txt +0 -8
  202. data/doc/guides/source/migrations/index.txt +0 -22
  203. data/doc/guides/source/migrations/rakeing_around.txt +0 -111
  204. data/doc/guides/source/migrations/scheming.txt +0 -47
  205. data/doc/guides/source/migrations/using_models_in_migrations.txt +0 -46
  206. data/doc/guides/source/migrations/writing_a_migration.txt +0 -159
  207. data/doc/guides/source/routing_outside_in.txt +0 -986
  208. data/doc/guides/source/security.txt +0 -984
  209. data/doc/guides/source/stylesheets/base.css +0 -358
  210. data/doc/guides/source/stylesheets/forms.css +0 -35
  211. data/doc/guides/source/stylesheets/more.css +0 -82
  212. data/doc/guides/source/templates/guides.html.erb +0 -97
  213. data/doc/guides/source/templates/inline.css +0 -165
  214. data/doc/guides/source/testing_rails_applications.txt +0 -995
  215. data/helpers/application.rb +0 -15
  216. data/lib/commands/performance/request.rb +0 -6
  217. data/lib/commands/process/inspector.rb +0 -68
  218. data/lib/commands/process/reaper.rb +0 -149
  219. data/lib/commands/process/spawner.rb +0 -219
  220. data/lib/commands/process/spinner.rb +0 -57
  221. data/lib/commands/servers/base.rb +0 -31
  222. data/lib/commands/servers/lighttpd.rb +0 -94
  223. data/lib/commands/servers/mongrel.rb +0 -69
  224. data/lib/commands/servers/new_mongrel.rb +0 -16
  225. data/lib/commands/servers/thin.rb +0 -25
  226. data/lib/commands/servers/webrick.rb +0 -66
  227. data/lib/rails/mongrel_server/commands.rb +0 -342
  228. data/lib/rails/mongrel_server/handler.rb +0 -55
  229. data/lib/rails/rack/logger.rb +0 -28
@@ -1,367 +0,0 @@
1
- Caching with Rails: An overview
2
- ===============================
3
-
4
- Everyone caches. This guide will teach you what you need to know about
5
- avoiding that expensive round-trip to your database and returning what you
6
- need to return to those hungry web clients in the shortest time possible.
7
-
8
- == Basic Caching
9
-
10
- This is an introduction to the three types of caching techniques that Rails
11
- provides by default without the use of any third party plugins.
12
-
13
- To get started make sure config.action_controller.perform_caching is set
14
- to true for your environment. This flag is normally set in the
15
- corresponding config/environments/*.rb and caching is disabled by default
16
- there for development and test, and enabled for production.
17
-
18
- [source, ruby]
19
- -----------------------------------------------------
20
- config.action_controller.perform_caching = true
21
- -----------------------------------------------------
22
-
23
- === Page Caching
24
-
25
- Page caching is a Rails mechanism which allows the request for a generated
26
- page to be fulfilled by the webserver, without ever having to go through the
27
- Rails stack at all. Obviously, this is super-fast. Unfortunately, it can't be
28
- applied to every situation (such as pages that need authentication) and since
29
- the webserver is literally just serving a file from the filesystem, cache
30
- expiration is an issue that needs to be dealt with.
31
-
32
- So, how do you enable this super-fast cache behavior? Simple, let's say you
33
- have a controller called ProductsController and a 'list' action that lists all
34
- the products
35
-
36
- [source, ruby]
37
- -----------------------------------------------------
38
- class ProductsController < ActionController
39
-
40
- caches_page :index
41
-
42
- def index; end
43
-
44
- end
45
- -----------------------------------------------------
46
-
47
- The first time anyone requests products/index, Rails will generate a file
48
- called index.html and the webserver will then look for that file before it
49
- passes the next request for products/index to your Rails application.
50
-
51
- By default, the page cache directory is set to Rails.public_path (which is
52
- usually set to RAILS_ROOT + "/public") and this can be configured by
53
- changing the configuration setting ActionController::Base.page_cache_directory. Changing the
54
- default from /public helps avoid naming conflicts, since you may want to
55
- put other static html in /public, but changing this will require web
56
- server reconfiguration to let the web server know where to serve the
57
- cached files from.
58
-
59
- The Page Caching mechanism will automatically add a .html exxtension to
60
- requests for pages that do not have an extension to make it easy for the
61
- webserver to find those pages and this can be configured by changing the
62
- configuration setting ActionController::Base.page_cache_extension.
63
-
64
- In order to expire this page when a new product is added we could extend our
65
- example controler like this:
66
-
67
- [source, ruby]
68
- -----------------------------------------------------
69
- class ProductsController < ActionController
70
-
71
- caches_page :list
72
-
73
- def list; end
74
-
75
- def create
76
- expire_page :action => :list
77
- end
78
-
79
- end
80
- -----------------------------------------------------
81
-
82
- If you want a more complicated expiration scheme, you can use cache sweepers
83
- to expire cached objects when things change. This is covered in the section on Sweepers.
84
-
85
- [More: caching paginated results? more examples? Walk-through of page caching?]
86
-
87
- === Action Caching
88
-
89
- One of the issues with Page Caching is that you cannot use it for pages that
90
- require to restrict access somehow. This is where Action Caching comes in.
91
- Action Caching works like Page Caching except for the fact that the incoming
92
- web request does go from the webserver to the Rails stack and Action Pack so
93
- that before filters can be run on it before the cache is served, so that
94
- authentication and other restrictions can be used while still serving the
95
- result of the output from a cached copy.
96
-
97
- Clearing the cache works in the exact same way as with Page Caching.
98
-
99
- Let's say you only wanted authenticated users to edit or create a Product
100
- object, but still cache those pages:
101
-
102
- [source, ruby]
103
- -----------------------------------------------------
104
- class ProductsController < ActionController
105
-
106
- before_filter :authenticate, :only => [ :edit, :create ]
107
- caches_page :list
108
- caches_action :edit
109
-
110
- def list; end
111
-
112
- def create
113
- expire_page :action => :list
114
- expire_action :action => :edit
115
- end
116
-
117
- def edit; end
118
-
119
- end
120
- -----------------------------------------------------
121
-
122
- And you can also use :if (or :unless) to pass a Proc that specifies when the
123
- action should be cached. Also, you can use :layout => false to cache without
124
- layout so that dynamic information in the layout such as logged in user info
125
- or the number of items in the cart can be left uncached. This feature is
126
- available as of Rails 2.2.
127
-
128
-
129
- [More: more examples? Walk-through of Action Caching from request to response?
130
- Description of Rake tasks to clear cached files? Show example of
131
- subdomain caching? Talk about :cache_path, :if and assing blocks/Procs
132
- to expire_action?]
133
-
134
- === Fragment Caching
135
-
136
- Life would be perfect if we could get away with caching the entire contents of
137
- a page or action and serving it out to the world. Unfortunately, dynamic web
138
- applications usually build pages with a variety of components not all of which
139
- have the same caching characteristics. In order to address such a dynamically
140
- created page where different parts of the page need to be cached and expired
141
- differently Rails provides a mechanism called Fragment Caching.
142
-
143
- Fragment Caching allows a fragment of view logic to be wrapped in a cache
144
- block and served out of the cache store when the next request comes in.
145
-
146
- As an example, if you wanted to show all the orders placed on your website
147
- in real time and didn't want to cache that part of the page, but did want
148
- to cache the part of the page which lists all products available, you
149
- could use this piece of code:
150
-
151
- [source, ruby]
152
- -----------------------------------------------------
153
- <% Order.find_recent.each do |o| %>
154
- <%= o.buyer.name %> bought <% o.product.name %>
155
- <% end %>
156
-
157
- <% cache do %>
158
- All available products:
159
- <% Product.find(:all).each do |p| %>
160
- <%= link_to p.name, product_url(p) %>
161
- <% end %>
162
- <% end %>
163
- -----------------------------------------------------
164
-
165
- The cache block in our example will bind to the action that called it and is
166
- written out to the same place as the Action Cache, which means that if you
167
- want to cache multiple fragments per action, you should provide an action_suffix to the cache call:
168
-
169
- [source, ruby]
170
- -----------------------------------------------------
171
- <% cache(:action => 'recent', :action_suffix => 'all_products') do %>
172
- All available products:
173
- -----------------------------------------------------
174
-
175
- and you can expire it using the expire_fragment method, like so:
176
-
177
- [source, ruby]
178
- -----------------------------------------------------
179
- expire_fragment(:controller => 'producst', :action => 'recent', :action_suffix => 'all_products)
180
- -----------------------------------------------------
181
-
182
- [More: more examples? description of fragment keys and expiration, etc? pagination?]
183
-
184
- === Sweepers
185
-
186
- Cache sweeping is a mechanism which allows you to get around having a ton of
187
- expire_{page,action,fragment} calls in your code by moving all the work
188
- required to expire cached content into a ActionController::Caching::Sweeper
189
- class that is an Observer and looks for changes to an object via callbacks,
190
- and when a change occurs it expires the caches associated with that object n
191
- an around or after filter.
192
-
193
- Continuing with our Product controller example, we could rewrite it with a
194
- sweeper such as the following:
195
-
196
- [source, ruby]
197
- -----------------------------------------------------
198
- class StoreSweeper < ActionController::Caching::Sweeper
199
- observe Product # This sweeper is going to keep an eye on the Post model
200
-
201
- # If our sweeper detects that a Post was created call this
202
- def after_create(product)
203
- expire_cache_for(product)
204
- end
205
-
206
- # If our sweeper detects that a Post was updated call this
207
- def after_update(product)
208
- expire_cache_for(product)
209
- end
210
-
211
- # If our sweeper detects that a Post was deleted call this
212
- def after_destroy(product)
213
- expire_cache_for(product)
214
- end
215
-
216
- private
217
- def expire_cache_for(record)
218
- # Expire the list page now that we added a new product
219
- expire_page(:controller => '#{record}', :action => 'list')
220
-
221
- # Expire a fragment
222
- expire_fragment(:controller => '#{record}', :action => 'recent', :action_suffix => 'all_products')
223
- end
224
- end
225
- -----------------------------------------------------
226
-
227
- Then we add it to our controller to tell it to call the sweeper when certain
228
- actions are called. So, if we wanted to expire the cached content for the
229
- list and edit actions when the create action was called, we could do the
230
- following:
231
-
232
- [source, ruby]
233
- -----------------------------------------------------
234
- class ProductsController < ActionController
235
-
236
- before_filter :authenticate, :only => [ :edit, :create ]
237
- caches_page :list
238
- caches_action :edit
239
- cache_sweeper :store_sweeper, :only => [ :create ]
240
-
241
- def list; end
242
-
243
- def create
244
- expire_page :action => :list
245
- expire_action :action => :edit
246
- end
247
-
248
- def edit; end
249
-
250
- end
251
- -----------------------------------------------------
252
-
253
- [More: more examples? better sweepers?]
254
-
255
- === SQL Caching
256
-
257
- Query caching is a Rails feature that caches the result set returned by each
258
- query so that if Rails encounters the same query again for that request, it
259
- will used the cached result set as opposed to running the query against the
260
- database again.
261
-
262
- For example:
263
-
264
- [source, ruby]
265
- -----------------------------------------------------
266
- class ProductsController < ActionController
267
-
268
- before_filter :authenticate, :only => [ :edit, :create ]
269
- caches_page :list
270
- caches_action :edit
271
- cache_sweeper :store_sweeper, :only => [ :create ]
272
-
273
- def list
274
- # Run a find query
275
- Product.find(:all)
276
-
277
- ...
278
-
279
- # Run the same query again
280
- Product.find(:all)
281
- end
282
-
283
- def create
284
- expire_page :action => :list
285
- expire_action :action => :edit
286
- end
287
-
288
- def edit; end
289
-
290
- end
291
- -----------------------------------------------------
292
-
293
- In the 'list' action above, the result set returned by the first
294
- Product.find(:all) will be cached and will be used to avoid querying the
295
- database again the second time that finder is called.
296
-
297
- Query caches are created at the start of an action and destroyed at the end of
298
- that action and thus persist only for the duration of the action.
299
-
300
- === Cache stores
301
-
302
- Rails provides different stores for the cached data for action and fragment
303
- caches. Page caches are always stored on disk.
304
-
305
- The cache stores provided include:
306
-
307
- 1) Memory store: Cached data is stored in the memory allocated to the Rails
308
- process, which is fine for WEBrick and for FCGI (if you
309
- don't care that each FCGI process holds its own fragment
310
- store). It's not suitable for CGI as the process is thrown
311
- away at the end of each request. It can potentially also
312
- take up a lot of memory since each process keeps all the
313
- caches in memory.
314
-
315
- [source, ruby]
316
- -----------------------------------------------------
317
- ActionController::Base.cache_store = :memory_store
318
- -----------------------------------------------------
319
-
320
- 2) File store: Cached data is stored on the disk, this is the default store
321
- and the default path for this store is: /tmp/cache. Works
322
- well for all types of environments and allows all processes
323
- running from the same application directory to access the
324
- cached content.
325
-
326
-
327
- [source, ruby]
328
- -----------------------------------------------------
329
- ActionController::Base.cache_store = :file_store, "/path/to/cache/directory"
330
- -----------------------------------------------------
331
-
332
- 3) DRb store: Cached data is stored in a separate shared DRb process that all
333
- servers communicate with. This works for all environments and
334
- only keeps one cache around for all processes, but requires
335
- that you run and manage a separate DRb process.
336
-
337
- [source, ruby]
338
- -----------------------------------------------------
339
- ActionController::Base.cache_store = :drb_store, "druby://localhost:9192"
340
- -----------------------------------------------------
341
-
342
- 4) MemCached store: Works like DRbStore, but uses Danga's MemCache instead.
343
- Requires the ruby-memcache library:
344
- gem install ruby-memcache.
345
-
346
- [source, ruby]
347
- -----------------------------------------------------
348
- ActionController::Base.cache_store = :mem_cache_store, "localhost"
349
- -----------------------------------------------------
350
-
351
- 5) Custom store: You can define your own cache store (new in Rails 2.1)
352
-
353
- [source, ruby]
354
- -----------------------------------------------------
355
- ActionController::Base.cache_store = MyOwnStore.new("parameter")
356
- -----------------------------------------------------
357
-
358
- == Advanced Caching
359
-
360
- Along with the built-in mechanisms outlined above, a number of excellent
361
- plugins exist to help with finer grained control over caching. These include
362
- Chris Wanstrath's excellent cache_fu plugin (more info here:
363
- http://errtheblog.com/posts/57-kickin-ass-w-cachefu) and Evan Weaver's
364
- interlock plugin (more info here:
365
- http://blog.evanweaver.com/articles/2007/12/13/better-rails-caching/). Both
366
- of these plugins play nice with memcached and are a must-see for anyone
367
- seriously considering optimizing their caching needs.
@@ -1,147 +0,0 @@
1
- A Guide to The Rails Command Line
2
- =================================
3
-
4
- Rails comes with every command line tool you'll need to
5
-
6
- * Create a Rails application
7
- * Generate models, controllers, database migrations, and unit tests
8
- * Start a development server
9
- * Mess with objects through an interactive shell
10
- * Profile and benchmark your new creation
11
-
12
- ... and much, much more! (Buy now!)
13
-
14
- This tutorial assumes you have basic Rails knowledge from reading the Getting Started with Rails Guide.
15
-
16
- == Command Line Basics ==
17
-
18
- There are a few commands that are absolutely critical to your everyday usage of Rails. In the order of how much you'll probably use them are:
19
-
20
- * console
21
- * server
22
- * rake
23
- * generate
24
- * rails
25
-
26
- Let's create a simple Rails application to step through each of these commands in context.
27
-
28
- === rails ===
29
-
30
- The first thing we'll want to do is create a new Rails application by running the `rails` command after installing Rails.
31
-
32
- NOTE: You know you need the rails gem installed by typing `gem install rails` first, right? Okay, okay, just making sure.
33
-
34
- [source,shell]
35
- ------------------------------------------------------
36
- $ rails commandsapp
37
-
38
- create
39
- create app/controllers
40
- create app/helpers
41
- create app/models
42
- ...
43
- ...
44
- create log/production.log
45
- create log/development.log
46
- create log/test.log
47
- ------------------------------------------------------
48
-
49
- Rails will set you up with what seems like a huge amount of stuff for such a tiny command! You've got the entire Rails directory structure now with all the code you need to run our simple application right out of the box.
50
-
51
- NOTE: This output will seem very familiar when we get to the `generate` command. Creepy foreshadowing!
52
-
53
- === server ===
54
-
55
- Let's try it! The `server` command launches a small web server written in Ruby named WEBrick which was also installed when you installed Rails. You'll use this any time you want to view your work through a web browser.
56
-
57
- NOTE: WEBrick isn't your only option for serving Rails. We'll get to that in a later section. [XXX: which section]
58
-
59
- Here we'll flex our `server` command, which without any prodding of any kind will run our new shiny Rails app:
60
-
61
- [source,shell]
62
- ------------------------------------------------------
63
- $ cd commandsapp
64
- $ ./script/server
65
- => Booting WEBrick...
66
- => Rails 2.2.0 application started on http://0.0.0.0:3000
67
- => Ctrl-C to shutdown server; call with --help for options
68
- [2008-11-04 10:11:38] INFO WEBrick 1.3.1
69
- [2008-11-04 10:11:38] INFO ruby 1.8.5 (2006-12-04) [i486-linux]
70
- [2008-11-04 10:11:38] INFO WEBrick::HTTPServer#start: pid=18994 port=3000
71
- ------------------------------------------------------
72
-
73
- WHOA. With just three commands we whipped up a Rails server listening on port 3000. Go! Go right now to your browser and go to http://localhost:3000. I'll wait.
74
-
75
- See? Cool! It doesn't do much yet, but we'll change that.
76
-
77
- === generate ===
78
-
79
- The `generate` command uses templates to create a whole lot of things. You can always find out what's available by running `generate` by itself. Let's do that:
80
-
81
- [source,shell]
82
- ------------------------------------------------------
83
- $ ./script/generate
84
- Usage: ./script/generate generator [options] [args]
85
-
86
- ...
87
- ...
88
-
89
- Installed Generators
90
- Builtin: controller, integration_test, mailer, migration, model, observer, performance_test, plugin, resource, scaffold, session_migration
91
-
92
- ...
93
- ...
94
- ------------------------------------------------------
95
-
96
- NOTE: You can install more generators through generator gems, portions of plugins you'll undoubtedly install, and you can even create your own!
97
-
98
- Using generators will save you a large amount of time by writing *boilerplate code* for you -- necessary for the darn thing to work, but not necessary for you to spend time writing. That's what we have computers for, right?
99
-
100
- Let's make our own controller with the controller generator. But what command should we use? Let's ask the generator:
101
-
102
- NOTE: All Rails console utilities have help text. For commands that require a lot of input to run correctly, you can just try the command without any parameters (like `rails` or `./script/generate`). For others, you can try adding `--help` or `-h` to the end, as in `./script/server --help`.
103
-
104
- [source,shell]
105
- ------------------------------------------------------
106
- $ ./script/generate controller
107
- Usage: ./script/generate controller ControllerName [options]
108
-
109
- ...
110
- ...
111
-
112
- Example:
113
- `./script/generate controller CreditCard open debit credit close`
114
-
115
- Credit card controller with URLs like /credit_card/debit.
116
- Controller: app/controllers/credit_card_controller.rb
117
- Views: app/views/credit_card/debit.html.erb [...]
118
- Helper: app/helpers/credit_card_helper.rb
119
- Test: test/functional/credit_card_controller_test.rb
120
-
121
- Modules Example:
122
- `./script/generate controller 'admin/credit_card' suspend late_fee`
123
-
124
- Credit card admin controller with URLs /admin/credit_card/suspend.
125
- Controller: app/controllers/admin/credit_card_controller.rb
126
- Views: app/views/admin/credit_card/debit.html.erb [...]
127
- Helper: app/helpers/admin/credit_card_helper.rb
128
- Test: test/functional/admin/credit_card_controller_test.rb
129
- ------------------------------------------------------
130
-
131
- Ah, the controller generator is expecting parameters in the form of `generate controller ControllerName action1 action2`. Let's make a `Greetings` controller with an action of *hello*, which will say something nice to us.
132
-
133
- [source,shell]
134
- ------------------------------------------------------
135
- $ ./script/generate controller Greeting hello
136
- exists app/controllers/
137
- exists app/helpers/
138
- create app/views/greeting
139
- exists test/functional/
140
- create app/controllers/greetings_controller.rb
141
- create test/functional/greetings_controller_test.rb
142
- create app/helpers/greetings_helper.rb
143
- create app/views/greetings/hello.html.erb
144
- ------------------------------------------------------
145
-
146
- Look there! Now what all did this generate? It looks like it made sure a bunch of directories were in our application, and created a controller file, a functional test file, a helper for the view, and a view file. All from one command!
147
-