From 09e65c8404e9529a6a5796e9d6cd38dc908fb3ba Mon Sep 17 00:00:00 2001 From: Dayan De La Paz Date: Fri, 26 Jun 2015 18:41:28 -0400 Subject: [PATCH] Update 03.2.md Fixed typo and added ROR Definition. --- en/03.2.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/en/03.2.md b/en/03.2.md index af81f3ff..b111db94 100644 --- a/en/03.2.md +++ b/en/03.2.md @@ -50,11 +50,11 @@ Figure 3.8 Server printed information As you can see, we only need to call two functions in order to build a simple web server. -If you are working with PHP, you're probably asking whether or not we need something like Nginx or Apache. The answer is we no, since Go listens to the TCP port by itself, and the function `sayhelloName` is the logic function just like a controller in PHP. +If you are working with PHP, you're probably asking whether or not we need something like Nginx or Apache. The answer is we don't, since Go listens to the TCP port by itself, and the function `sayhelloName` is the logic function just like a controller in PHP. If you are working with Python you should know tornado, and the above example is very similar to that. -If you are working with Ruby, you may notice it is like script/server in ROR. +If you are working with Ruby, you may notice it is like script/server in ROR (Ruby on Rails). We used two simple functions to setup a simple web server in this section, and this simple server already has the capacity for high concurrency operations. We will talk about how to utilize this in the next two sections.