inherit
134613
0
Aug 28, 2014 15:04:59 GMT -8
Dr. House, M.D.
504
December 2008
redsoviet
|
Post by Dr. House, M.D. on Jul 2, 2010 2:06:19 GMT -8
Has anyone ever tried it? Is it even worth getting in to (yes, I know proboards uses it, which is why this question was brought up)? I do see how powerful it is and everything, but getting started to use it... is a different story.
|
|
inherit
97216
0
Nov 26, 2024 13:53:14 GMT -8
Bennett 🚀
Formerly iPokemon.
3,622
January 2007
catattack
iPokemon's Mini-Profile
|
Post by Bennett 🚀 on Jul 2, 2010 6:17:23 GMT -8
I've wondered this also. Doesn't it do the same thing as PHP and ASP?/form processors?
|
|
inherit
134613
0
Aug 28, 2014 15:04:59 GMT -8
Dr. House, M.D.
504
December 2008
redsoviet
|
Post by Dr. House, M.D. on Jul 2, 2010 7:02:26 GMT -8
By the way it looks, I'm going to say yes about that. I know you can use it with MySQL/PostgreSQL
|
|
inherit
77753
0
Jul 18, 2024 12:23:50 GMT -8
Bob
2,623
April 2006
bobbyhensley
|
Post by Bob on Jul 2, 2010 14:35:55 GMT -8
Okay let the fun begin.
CGI is not a language. You do not write code in CGI.
CGI, or Common Gateway Interface, is a standard. It allows the web server to communicate with the client. More specifically, it states how the web server can have another application on the machine create the web page request.
Now CGI in and of itself is rather inefficient. Thus it's not commonly used. Rather Apache modules are more popular (think mod_perl, mod_php, mod_python, etc.). Where a module doesn't exist FastCGI tends to be utilized. CGI's problem is that it's resource intensive (each call starts a new process). Apache modules eliminate that issue entirely. FastCGI improves on it by allowing one process to handle multiple requests.
That said, you're referring to Perl (which is a language). Perl is still a very popular language but it has lost much of its former grip on web development in favor of Java (J2EE especially) and PHP. It's still arguably the most popular language amongst sysadmins. Whether it's worth getting into or not is a tough question. On one side it's impossible to answer because it's a choice you have to make on your own. And on the other side it's a question that is akin to choosing a religion... debating it isn't pretty.
Look at the introductory material covering Perl. See how you like it. If you have a positive reaction to it then stick with it.
|
|
inherit
134613
0
Aug 28, 2014 15:04:59 GMT -8
Dr. House, M.D.
504
December 2008
redsoviet
|
Post by Dr. House, M.D. on Jul 11, 2010 21:21:46 GMT -8
I do like it and everything (also a lot of people know it by CGI over Perl a lot better ) I have noticed, it is server intensive. So, Bobby, is there a way to reduce the load on the server (why does it always have to call back to the server x.x)?
|
|