As per the article at W3Techs, Perl ranks the lowest among the server side scripting languages, even less than Java? Is there any reason behind it? Perl, as far as I see, is very popular, and an awesome language, how come it is hardly used by websites? Does it have issues with server side scripting?
-
1This is possibly one of the open-ended questions which Stackoverflow isn't designed for - stackoverflow.com/faq#dontask– matt freakeJul 20, 2012 at 9:26
-
3Reminds me of madeupstats...– Sebastian StumpfJul 20, 2012 at 9:32
-
3Voting to close as non-constructive → soliciting debate, arguments– daximJul 20, 2012 at 9:33
-
This proves only that if you base statistics on flawed data gathering techniques, you get flawed statistics. Also proves that many people can be easily deceived by flawed statistics.– DavidOJul 20, 2012 at 19:54
1 Answer
This article has a lot of details on how W3Techs gets their data: http://w3techs.com/blog/entry/usage_of_perl_for_websites_fell_below_1_percent
As i did some analysis on this, let me summarize in short that the data presented by W3Techs is deeply flawed and extremely misleading. First off, it is important to know that they detect technologies of sites by running simple scripts at them that look for file suffixes in urls and then just take that and never verify with the site owner. As such they have a "no-detect" rate of 17.6% (plus an unknown "false-detect" rate). A more correct version of their chart would be this:

If you'd like to get more details and more mistakes in their data methodology, please take a look at the comments of the article, especially those written by "Mithaldu" or "Christian Walde", i.e. me. I posted extensively there as to why their data is nearly useless and why they're even misinterpreting the data they do have.
-
1Ummm, I didn't get the minimum and maximum thing. Please explain. And where is the link to the article you mentioned? What is the source of your data? Jul 20, 2012 at 10:04
-
Sorry, i wasn't aware that the question linked to another page on W3Techs, i edited the answer to explain what i am talking about.– MithalduJul 20, 2012 at 10:15
-
-
3The article is an amazingly bad example of uselessness. IMHO, the most important bar they don't show (as you point out as well) is the "the web sites whose technology we can't deduce" compared to all others. Jul 20, 2012 at 11:35
-
3Most modern Perl web frameworks don't leave a fingerprint that would be easy to detect unless configured to do so. Mojolicious, for example, doesn't require that URL's end in ".pl", and in fact, it would make no sense for them to do so. Mojolicious has a plugin that will set a "powered by" x-header field, but aside from explicit configuration it would be impossible to detect that Perl is powering a Mojolicious-based website. I suspect the same is true of Catalyst and Dancer. So the data gathering method is only showing sites that use old-style technology that exposes script names.– DavidOJul 20, 2012 at 19:47