The process of listening to and responding to a request coming in to a Rails application can be broken into several stages:
- the Web server talking to the dispatcher (which is a Ruby program);
- the dispatcher awakening the appropriate controller and asking that controller to perform aparticular action;
- the performance of that action;
- the filling out of the view, based on the data manipulations carried out in the controller action.
No comments:
Post a Comment