vote up 3 vote down star
3

I'm looking for some metrics. I'm currently tech-editing a book in which the author boldly states that "ASP executes faster than CGI and Perl". It's not backed up by any sources or anything that would lead me to believe that was a fact, so I'm wondering, does anyone know the answer to this question? I've done some google searches, but have not found any solid data as of yet.

So, which executes faster? Old school ASP or Perl/CGI? I know these are pretty out-dated tools, so I've thrown PHP and JSP etc into the question title to kind of make this a little more relevant to the community...

flag
1  
You might want to bracket that with some specific task that can actually be benchmarked. Lacking a specific benchmark, it can get hard to resolve the disputes. – S.Lott Sep 30 '08 at 16:51
True. I'm just trying to decide how generally accurate the statement is so I know if I should nix it from the book or not... – cmcculloh Sep 30 '08 at 16:55
CGI happens to be the oldest and slowest way to run perl... which is why it was replaced years ago with mod_perl. – Alex R Oct 31 at 22:21
And mod_perl is the most irritating and complicated to run Perl, which is why it was replaced with FastCGI. – David Dorward Nov 12 at 14:17

19 Answers

vote up 2 vote down check

This looks like it has some benchmarks for you on those technologies: http://www.wrensoft.com/zoom/benchmarks.html

It looks like CGI is by far the fastest, followed by PHP.

Here's a particular example where a person claims his individual implementations showed Perl/cgi at 1100% faster than ASP: http://perl.apache.org/outstanding/success_stories/idl-net.html

Here's someone who benchmarked Ruby against the other web approaches. http://izumi.plan99.net/blog/index.php/2008/01/17/ruby-vs-php-performance/

link|flag
Yeah, I saw that, but I thought that was just for those people's software running under the different technologies. Plus that CGI is running C++ not Perl. I'll look more closely at that though... – cmcculloh Sep 30 '08 at 17:22
Oh! I thought: "ASP executes faster than CGI and Perl" --> ASP is faster than CGI AND ASP is faster than Perl. – torial Sep 30 '08 at 19:00
ASP on IIS 5.1 lol? We are few version over that... seem not fair to me. – Daok Sep 30 '08 at 19:14
vote up 19 vote down

You can have a look at some programming language benchmarks but there is a lot more to factor in than language speed:

  • Is there in-memory application or data caching?
  • How fast is the data access layer?
  • How fast is that platform's filesystem for the task?
  • How well written is the application?

ASP is pretty old and pretty slow but there are components for it that add decent caching, provided you use them. PHP is also pretty old and it lacks decent built-in caching features that newer frameworks have (eg: ASPNET's in-RAM Application/Cache stores) but it's made up for by community driven projects like memcached, APC cache, xcache, et al. Again, you have to use them to reap their benefits!

When you get to it, it's fair to say that you shouldn't be choosing based on performance, because with enough tweaking, you can get practically any language/framework to run damned efficiently. In short:

Make your choice on development merits, not deployment.

(or how much it costs to deploy efficiently, if money is a tight factor)

link|flag
1  
I'm pretty sure the statement has absolutely nothing to do with programming language, any everything with the invocation model (process fork for classic CGI, not matter the language, while ASP is integrated into the server). – Michael Borgwardt Jul 2 at 8:07
While I agree with what you are saying, I believe the post I marked as "the answer" answers my specific question, which was asking if the statement "ASP executes faster than CGI and Perl" should be included in a textbook on web development I was tech editing... – cmcculloh Aug 24 at 16:32
vote up 8 vote down

This kind of statement needs to be backed with some context. Both Perl and PHP are interpreted scripting languages. As far as I know classic ASP (with an .asp extension) is also an interpreted scripting language which has to be interpreted with each web request. The overhead of loading a script and all of it dependencies with each request can be a significant part of the request to response time. Perl has mod_perl which essentially caches the results of an interpreted script and PHP has equivalent accelerators. But Perl and PHP do not come with these accelerators directly. Assuming you are running the Apache web server you need to compile these accelerators for your copy of Apache and set them up. From my experience that has been a tricky process but it does dramatically speed up your Perl and PHP sites.

With classic ASP I assume an accelerator comes out of the box so you do not have to take the extra step of putting it in place. I have been surprised how fast ASP has been for sites I have had to update. Since I started working with the Microsoft platform after years of working in the LAMP side of things (FreeBSD, Apache, and Perl in my case) I never did much ASP work. I just touch ASP occasional for legacy maintenance. I went straight into ASP.NET which is compiled, not interpreted. Normally you can expect a compiled solution to be much faster than an interpreted solution. If your author means ASP.NET (which some have started abbreviating as ASP in some books) then you may be dealing with the interpreted versus compiled distinction.

Still a script can sometimes be faster than a compiled solution, in some cases. A scripting language like Perl has been around a while and the interpreter has many optimizations that are in place to address known performance issues. Those optimizations take very readable code that is typical for the language and applies these optimizations. If you were coding something up in C, which specifically controls how a program is executed, you would not benefit from a runtime optimization in the same way. Also with Perl you may be using a module which offloads the processor intensive tasks to a C compiled component that does the heavy lifting very quickly. The benefit is that it is faster to write the script for your custom needs while it runs possibly as fast or faster than the purely C solution. With more work to manually optimize the C alternative you could make it much faster. But where do you want to spend your labor dollars? If I can do it quickly and essentially get sufficient performance in 10% of the time, why would I do more work?

With the possibility that a scripting language can be faster than a purely compiled alternative then your authors absolute statement that one thing is faster than another cannot be true. I would at least note the distinctions in a side bar. Not all things are equal, as the phrase goes.

link|flag
vote up 3 vote down

This is highly subjective, and depends heavily on implementation..

For example, CGI could be a C program, or it could be a perl program. CGI itself is just an interface between a HTTP Server and an application.

Likewise, PHP running on IIS6 does not have native integration and has to use a CGI bridge, while ASP/ASP.NET is natively integrated through ISAPI, so of course ASP/ASP.NET is faster....

The bottom line is that different languages may be faster (For example, the CLR that ASP.NET leverages is blazingly fast), but the form of integration really makes all the difference.

Since you are editing a book, I'd recommend the author remove this highly subjective content.

link|flag
It also depends on how well written the code is. Plus if it is running on Apache I think the ASP.NET would be slower. Speed of languages is a terrible thing to discuss. It's far too subjective a topic. – benrick Nov 12 at 14:13
vote up 2 vote down

CGI isn't directly comparable to ASP. CGI is just a gateway or protocol to interface with a program on the server and defines things like how GET and POST arguments are passed to the server-side program. That program could be any script or executable, assuming the permissions are set correctly.

That being said, the CGI model tends to require a process fork and complete initialization of the target program for every request. On the other hand, something like mod_php or mod_perl runs inside the Apache webserver (and probably ASP is implemented similarly in IIS but I've never used it). On one hand, it's much heavier to start a separate process every time than to keep one running inside the web server. On the other hand, it can provide some isolation in case the program crashes.

One solution that provides a compromise is FastCGI. It's faster than regular CGI and allows distributed processing of requests but retains the language-agnostic nature of CGI.

link|flag
vote up 2 vote down

The general rule I to go by is that interpreted languages (i.e. languages that require the script to be interpreted [e.g. PHP, ASP, Perl]) are an order of magnitude slower than compiled languages (ASP.NET, C, Lisp, Native Java).

Nevertheless, the performance effects of compiled vs interpreted code do not come into play until a server gets hit with AT LEAST 200+ users at one time.

link|flag
vote up 2 vote down

Non-interpreted languages execute faster, but this isn't really here nor there since the longest wait times are on database transactions, and web applications aren't used for CPU intensive tasks. Therefore whichever has the best DB driver support, for one, could be factored in to analyze what you think is the 'quickest' language, however....

Really, 'which language is faster' is a pretty darn open-ended question to which no meaningful 'quick answer' will work or mean anything. Books, technical books that is, could be written on this, en-volumes.

link|flag
vote up 2 vote down

Given that you can write CGI pages in C ...

link|flag
vote up 1 vote down

There are speed tests of languages on Debian's site.

PHP is slower than Java, and as JSPs are compiled into Servlets (i.e., Java code) they will be extremely fast as well.

I am also certain that all implementations will be held back by network latencies and communications (e.g., to the database, to downstream web services, etc). The faster languages will therefore be waiting longer than the slower ones (although that waiting is free cycles for other threads and processes to run).

Let's not get onto the issue of poor algorithm selection and data model choices slowing down the execution time of even the fastest language.

link|flag
vote up 1 vote down

I'm not completely sure how to answer because there are different factors that affect your performance. Generally when you're comparing languages, actual programming languages vs. scripting languages like php will perform better since it will probably be precompiled. When you have to precompile, you've performed a chuck of the work already. In php, your code is interpreted and compiled dynamically when your script runs. So, php has more work to do off the bat interpreting your stuff, which is already done in a precompiled solution.

link|flag
vote up 0 vote down

For your spread, it probably would be a good idea to perform the benchmarks yourself. Some things to consider:

  • A dry run, without anything else, to see how much overhead the interpreter has
  • Hello world app
  • Benchmarks on some common algorithms, implemented in userspace code. For extra win, don't use anything that has a language-level equivalent
link|flag
vote up 0 vote down

It probably depends on your usage but i remember doing some speed tests with a heavy database driven site and PHP thumped ASP for speed by 300%.

link|flag
1  
So you built the website in both languages and benchmarked what ran faster? =) Just curious. – Till Sep 30 '08 at 17:16
vote up 0 vote down

Learn once and program forever--if you are a java programmer,jsp use JSP. If you are .Net (C# or VB) simply use ASP and, likewise-if you are a C use PHP

link|flag
I disagree with that sentiment, keep learning all the time! Also, C and php are very different! – Jim Robert Nov 12 at 14:10
vote up 0 vote down

All things come at last that what is more economical,robust and secure. If you have a combination of all in terms of human,money and time you should opt that. Have a business analysis between asp,jsp and php http://phpwala.wordpress.com.

link|flag
vote up 0 vote down

Here is a test which shows that ASP.NET running on a home server (Windows XP) runs several times quicker than PHP on the Zend accelerator: http://www.pzycoman.myby.co.uk/lspeed.html

PS: Somebody posted a Wrensoft link above and said PHP is faster than ASP, though this is misleading since, PHP in this particular test may be faster than ASP, BUT ASP.NET is faster than PHP:

Regards, Financial Developer

link|flag
this isn't really a fair comparison, php on mod_php is significantly faster on linux than windows, not to mention that windows xp isn't exactly a server – Jim Robert Nov 12 at 14:12
vote up 0 vote down

I hope everyone here knows that ASP is different from ASP.NET. ASP.NET will probably beat out PHP in the real world. ASP is script, similar to PHP, but ASP.NET is optimized and compiled.

http://www.promoteware.com/Module/Article/ArticleView.aspx?id=10

peer edit: It should me mentioned that the text of this post is basically correct but the linked article is wildly inaccurate

link|flag
2  
This page is soo wrong, I can't believe this got upvoted. – AndrĂ© Mar 17 at 18:27
vote up -1 vote down

Not getting into a language war but

PHP and CGI are script languages. This means that Java and ASP.NET have about a 600% advantage over them. The numbers are there. As for which is faster between ASP.NET or Java, it is ASP.NET.

Speed tests via white papers have declared ASP.NET is faster than java. One good example is Cold Fusion is built off compiled java and MYSpace wrote a white paper when they switched from CF to ASP.NET.

They specifically state that ASP.NET is 40% faster in almost all categories.

Look it up and be impressed.

link|flag
3  
CGI is not a language it's a standard interface – AndrĂ© Mar 17 at 18:22
And "script language" is a pointless distinction. – David Dorward Nov 12 at 14:19
vote up -2 vote down

ASP is going to beat CGI for speed, simply due to the way it works. Don't dismiss Perl though, use it with FastCGI or mod_perl and its much faster (since the server doesn't have to spawn a perl instance for each request). You can even use PerlScript inside ASP.

link|flag
vote up -3 vote down

JSP is the most secure application than Asp.net and php

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.