On May 27, 6:55 pm, Fearless Fool <[email protected]> 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 [email protected]. To unsubscribe from this group, send email to [email protected]. For more options, visit this group at http://groups.google.com/group/rubyonrails-talk?hl=en.

