views:

45

answers:

3

I want to start the development of a web server using the Scheme language, but I need to have the basics knowledge of the web server, using the sockets and a little about the optimizations.

+1  A: 

The basics of the HTTP protocol can be seen in the RFC document located at Hypertext Transfer Protocol -- HTTP/1.1

Hamza
+1  A: 

These could be good starting points:

Fernando
+1  A: 

I would also look at Implementation and Use of the PLT Scheme Web Server which describes somebody building one.

Romain Hippeau
Thanks very much!
Nathan Campos