views:

1162

answers:

14

Why didn't languages such as C end up being using for web dev? Surely the speed increases from being compiled would be useful for heavy load sites?

+3  A: 

At least initially, a lot of the work done by backend code (which I assume is what you're talking about) was text-oriented. They either built pages directly from scratch, or by e.g. combining data from a database with a template.

C is not ... always well-suited for text processing. C strings are very basic, and while text processing in C of course can execute fast, it often takes a bit longer to develop, and requires somewhat deeper skills to get right, than languages that help you out a bit more.

unwind
+4  A: 

C was used for web applications early on - I wrote various CGI scripts in it.

Over time, however, more productive languages (C# and Java for example - but not exclusively those, of course) have proven to be "efficient enough" for web applications. Note that both C# and Java are compiled to intermediate code and then JIT-compiled, achieving "roughly" native code performance. Why would we want to use C instead?

Even the traditionally "genuinely interpreted" languages such as PHP are often compiled at execution time these days, as far as I'm aware. (My knowledge of PHP in particular is all second hand. Maybe it's always been compiled... And likewise I'm sure there are web platforms which are still always interpreted.)

Jon Skeet
+13  A: 

Another good reason is that on a big server execution speed is not so much an issue as the connection speed anyway. Most of the time is spent sending and receiving data, not number crunching. And actually in certain web services which do a lot of computations, the hard crunching is probably run as a compiled program.

Plus interpreted languages don't need compiling (which on a large project can take time), thus it's more suited for the typically agile development of web solutions.

Stein G. Strindhaug
How much you recompile and what dependencies you need recompiling after that is what governs compile time. The dynamic recompilation aspect of a script language is not unique per se, it's just a very fine grained implementation of the compilation process.
John Leidegren
A: 

Scripting languages where the only option for web development a long time ago. Now we have other alternatives (Java, .NET ..) so situation is not so bad.

C as a platform was not very successful for web development since it's hard to build a module that could be loaded and executed from web/application server, but one of the first framework for building dynamic web application was ISAPI modules for Microsoft's IIS that where mainly developed in C++ and where compiled.

Aleksandar
You can do web development by any language. You can embed your own web server to serve http. Or, you can do it by the classic CGI.
Dennis Cheung
+4  A: 

It is mostly because it is quick and simple to change them on the fly. Compiled languages require a development environment that must match the server. With a script you can use an ftp tool and edit the text directly and then save it. This ability to do this from any computer of any OS or type has save my life (or correctly my websites life) many times.

David Allan Finch
+7  A: 

Scripting languages have the following advantages over C:

  1. Much faster development
  2. Today, all of those relevant to this question are compiled at runtime. In some cases, this can make them faster than an equivalent C program, so performance just isn't an issue anymore.
  3. Maintenance costs much less
  4. You can develop using Agile methods (like unit tests) which results in much better code. Yeah, you can do that in C, too, but it's much more effort.
  5. When you're doing web development, you have huge frameworks which do most of the work for you.
  6. They are much more open to change. A new feature can take as much as a few minutes to implement.
  7. If something is broken, you can login to your server, start a text editor in the console and fix the problem, sometimes without having to restart.
Aaron Digulla
+4  A: 

Great question. The reason is basically due to the evolution of the web. Think about it in steps:

1) Basic text on the 'net' -> 2) Some 'markup' added to text -> 3) the "center" tag and "marquee" are formed!!! what progress!!! -> 4) scripting on the client!!! 5) -> hmm... scripting on the server!!!

While I formed this answer to be a bit goofy, it's really true. The interenet, and most especially the "web", has been an amazing evolutionary process. Really, requirements for more powerful languages (and more performant languages) has only been a more recent thing.

Also, look at the tools. I did my PHP in notepad (and some other simple apps). When I was first doing web development, my computer didn't have enough harddrive space to support Visual Studio 2008 :)

Side Point However: There have been ".exe" apps out there (I think "SunBiz" posts to an 'exe'), and some compiled cgi apps for a while, but they were much fewer.

Timothy Khouri
+5  A: 

Most web applications talk to a database. The overwhelming majority of these apps spend almost all of their time communicating with the database. So, for any given request to the application, there is a tiny amount of processing in the application server and then a long pause while waiting for the database. Since such a small percentage of any request's time is spent in actual application server code, optimizing that code by writing it in C/C++ will gain only a tiny, likely not noticeable, improvement in response time.

So, rather than focusing on C/C++ and saving every last CPU cycle, it makes more sense to worry about developer productivity. Developers are very expensive. And, they're typically much more productive in a scripting language or even in Java than they are in C/C++.

Of course, there are exceptions to this. And if some requests to your application are CPU or memory intensive, they should be written in C/C++. But, for the rest of your application, you're better off focusing on optimizing your algorithms, data structures, communication with the database, and developer productivity than in optimizing your language.

Clint Miller
+3  A: 

Try to do some string parsing/manipulation in C an in Perl/PHP and you will know.

BTW: Why do so many people state that performance is not an issue anymore? I might not be an issue for small homepages/blogs, but large scale web applications still need to be tuned for performance (cpu/network/memory) no matter if they are written in java, php or ruby.

EricSchaefer
You need to be a pretty massive operation for heavy code optimisation to pay off - when the alternative is just to add another server to the cluster. If you're Google or Amazon, then sure, 10% faster code releases thousands of CPUs.
slim
A friend of mine has a search engine for phonebooks and other short strings. He uses SSE3 instructions to brute force compare strings 16 at a time per core. 3 million strings are done in subsecond time on a desktop. Result table with dB fitness! It can't be done in PHP. It's either C, or noware!
Guge
+1  A: 

Here are my thoughts on the issue:

  • Original CGI applications required an OS process of their own, which is of course a resources hog. Trying to bundle everything into a single process is also not easy with native code, since if something goes wrong in an application could easily bring down the whole server. These things are much more easier handled with an Interpreter or a Virtual Machine. You can of course do the same with native code, but I suppose it would be much more difficult implementing the framework. At the end you will end up implementing something similar to an interpreter or a VM.
  • Interpreted languages are portable across operating systems.
  • Of course the great benefit is the productive boost you gain by using a modern language.
  • Performance is of course important. However interpreted or VM languages are getting better and better in this respect (with technologies like JIT compilation) and are approaching the performance of native code. Also it isn't fair to compare only the time spent during execution process. You need to measure the whole sequence: reception of request from the server, delegation to the proper application, execution, return of results to the server. Would a native application be faster in all of these?
kgiannakakis
A: 

My company uses C++ (an ISAPI extension) for our webapp. Nearly everything is done in the compiled binaries. We also use a JavaScript engine for parts of the system that require scripting (yes, server-side JavaScript). The reason cited for this design is speed, but age is also a factor... this is an old codebase. Also, we distribute our product to some of our customers to host themselves, so having it compiled protects our source code (many interpreted languages are trivially decompilable, or in the case of PHP and Perl, never compiled at all).

rmeador
Pedantic correction: PHP/Perl are rarely stored on disk in compiled form. Perl is compiled in memory before executing and the compiled form *can* be saved to disk, it's just something that hardly anybody does. (I assume the same is true of PHP, but don't know it to be the case.)
Dave Sherohman
With PHP many people use one of several caching mechanisms such as APC, eaccelerator, etc to hold compiled versions of scripts in shared memory for all webserver threads to use. It doesn't necessarily get written to disk, but isn't just tossed either.
Adam Franco
+2  A: 

It's worth pointing out that most scripting languages (Python, Ruby, etc.) bridge easily -- almost trivially -- to C. (I just wrote some C extensions for a Python program, and I was impressed with how easy it was.) If a website/web application does have some bottlenecks due to the use of a "slow" scripting language, one can usually write the performance-critical sections in a faster language like C. In fact, that's what large applications like Google search, Facebook, etc., do -- they write the interface in a scripting language and do the heavy lifting with other languages like C.

mipadi
A: 

So, rather than focusing on C/C++ and saving every last CPU cycle, it makes more sense to worry about developer productivity. Developers are very expensive. And, they're typically much more productive in a scripting language or even in Java than they are in C/C++.

Oh, so very, very true. If the use of a more dynamic language shaves a developer-week off the schedule, that week of programmer time that you don't have to pay for will buy you an additional server. Maybe even multiple servers, if you like lots of cheap ones instead of a few massive beasts.

For most of the world (i.e., not Google/Amazon/eBay/etc.), one extra server will more than compensate for any loss of raw performance that may result from the language choice.

Dave Sherohman
A: 

A lot of the extremely useful features of dynamic languages, such as introspection and functions like eval() are really difficult/impossible? to implement in languages that compile to native code.

That being said, most "scripting" languages do compile (on the fly) to some sort of intermediate code which is then interpreted (Python,Ruby,Perl) or maybe even JIT compiled to native code (JSP, .NET)

Ferruccio