[Rails] Re: what is the lifetime of ActionController, etc?
On May 27, 6:55 pm, Fearless Fool <li...@ruby-forum.com> wrote:
> I realize that I don't know what causes an ActionController to be
> created and destroyed. As a specific example, consider:
>
> class UsersController < ApplicationController
>
> def myState
> @myState ||= Object.new
> end
>
> def show
> ...
> end
> end
>
> Is there one ActionController created per user session? Will myState
> persist across GET and POST calls? Is the lifetime different in
> developer mode versus production mode?
>
No - one per request.
Fred
> To generalize the question: Are there any good references on the
> lifetime of various RoR objects in a running server?
>
> --
> Posted viahttp://www.ruby-forum.com/.
--
You received this message because you are subscribed to the Google Groups "Ruby on Rails: Talk" group.
To post to this group, send email to rubyonrails-talk@googlegroups.com.
To unsubscribe from this group, send email to rubyonrails-talk+unsubscribe@googlegroups.com.
For more options, visit this group at http://groups.google.com/group/rubyonrails-talk?hl=en.
0 Comments:
Post a Comment
Subscribe to Post Comments [Atom]
<< Home