views:

56

answers:

1

Hi

I was wondering if there was any good articles out there that explain how the architecture of rails works, i.e how it handles the server connection, how it queries the database so easily etc.

+5  A: 

Take a look at the blog of Yehuda Katz. He wrote a bunch of articles about the architecture of Rails, like this one. Watch The Renegades Guide to Hacking Rails. Try to find and read that book, it has a good chapter about the internals of Rails.

I forgot to mention the excellent Under the hood series by Jamis Buck. He really describes how the certain parts of Rails work.

You may also dive into the Rails sources. They are well commented, easy to read and understand. Read them just like any book.

floatless