Typical performance of Python scripts are about 5 times faster than PHP. What are the advantages of using faster server side scripting languages? Will the speed ever be felt by website visitors? Can PHP's performance be compensated by faster server processors?
|
|
According to Andy B. King, in Website Optimization:
http://www.svennerberg.com/2008/12/page-load-times-vs-conversion-rates/ But even though Python is ~4 times faster, by and large it's the architecture of the software that makes the biggest difference. If your queries and disk access are unoptimized, then you have a massive bottleneck—even when you're just including some 20 different files (5ms seek time equals 100ms). I'm certain that even Python can be slowed by inefficiencies and database queries, just as badly as PHP can. That said, unfriendly interfaces will cost you more, in the long run, than the decrease in speed will. Just make a registration form with no explanation and fifteen required fields, with strict validation, and you'll scare tons of people away. (In my own opinion.) |
|||
|
|
|
How about when you get charged for CPU time?
|
|||
|
|
|
For typical web apps, the difference in speed won't usually be felt within the request itself (the network latency dwarfs your compute time for a typical script that runs inside an HTTP request). There are plenty of other things that affect scalability, but the processing needs to handle an average request does factor in. So, a lonely user will not feel the difference. A user who is one of many might feel the difference, as the server infrastructure struggles with load. Of course, throwing more processor will mitigate the issue, but as jrockway says, maintaining two servers is significantly more than twice as hard as maintaining one. All of that said, in the vast majority of cases, your bottlenecks will not be processor. You'll be running out of memory, or you'll find that your database interaction is the real bottleneck. |
|||
|
|
|
Increasing the execution speed of web request handlers usually translates to handling more requests/second with the same hardware. This is valuable in a number of cases; maintaining one server is much easier than maintaining two. BTW, why Python and not Haskell? Haskell is 100x faster than PHP in some benchmarks. |
|||||||||||||
|