I feel like I'm an intermediate-advanced Rails programmer. I've written some small client apps. However, I feel like I'm missing something. I don't really understand HTTP; what a web server is; how networking works; what Mongrel is beyond just "script/server". Are there any good books to explain what HTTP is and other stuff I'm missing out on?
feedback
|
|
Probably the closest book I have read to what you are looking for is HTTP, The Definitive Guide by David Gourley. It is older, so it doesn't go into Reverse Proxies in much depth, but covers most of the other stuff you need to understand. One book I reccomend Rails developers read is RESTful Web Services, by Leonard Richardson and Sam Ruby. It has a lot of examples, many in Ruby, of how the web works, mixed in with a lot of XML. The forward by DHH sort of hints that this kind of thinking underlies many of the design principles at work. Another book I recommend to get a deeper understanding of Rails from the software architecture perspective is Patterns of Enterprise Application Architecture by Martin Fowler. It has the logic behind many of the concepts that appear in Rails, such as ActiveRecord, SingleTableInheritance, ApplicationController, etc. Finally, I have to mention Release It by Michael Nygard. It gives a good introduction into the concerns of building larger web sites, avoiding interdependencies, using load balancers, etc. | |||
|
feedback
|
|
Maybe this could help a little: http://railstutor.org/projects/rails-tutor/wiki/Courseware%5FOutline (disclaimer: it's a perpetual work in progress) | |||
|
feedback
|
|
From The book Apprenticeship Patterns Dig Deeper Recipe.
This is going to give you a deep understanding of the problems of http has been facing the last three decades, and why http is the way it is. You can also start building application and utilities over Rack, you will find all the things that rails is hidden to you. A friend of mine asked my how he can learn rails, and I proposed him to build toy application in this order Sinatra -> Rack -> Rails | |||
|
feedback
|
|
Thanks for all the responses! I'll definitely check out HTTP The Definitive Guide, RESTful Web Services, Enterprise Application Architecture, and Release It! But what about books for learning about web servers/other networking related concepts...things like Apache, CGI vs FastCGI, what Passenger is, etc. etc. | |||
|
feedback
|
|
HTTP is mostly about sending HTTP requests and getting back HTTP responses. You might find unpicking the following piece of code a useful starting point:
If you want to see a real HTTP conversation going on, try using a tool called "wireshark" ( http://www.wireshark.org/ ) - it can capture all the packets leaving and arriving on your machine and then reassembling the HTTP conversation - even at different levels. You can use wireshark to see pretty much any networked conversation between apps. | |||
|
feedback
|