Camille Roux wrote: > I've a question about the Rails runtime. > I'd like to know which part of Rails is executed (and put in memory) at > each request? at each server launch? > In other words, is Rails like PHP (the whole code is "executed" at each > request)?
On on start-up in production mode a Rails app will load, execute, and cache the Rails framework plus certain parts of the app code. The rest of the app code is loaded and cached on-demand when an unknown class or module is referenced during a request. -- Rails Wheels - Find Plugins, List & Sell Plugins - http://railswheels.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 -~----------~----~----~----~------~----~------~--~---

