I want to know which language either php an interpreted language or Asp.net a compiled language to be adopted in the following scenario for better performance and why?
Scenario:
A business to business portal has to be made which will face 10,000+ users per hour traffic.
I want to know which language either php an interpreted language or Asp.net a
Share
Hard question, not much information… by the books ASP.net compiled language will give you a small boost on performance rather than an interpreted language like old asp, php, etc.
The reason behind that is that compiled languages are quicker as they have already compiled everything versus a php page that has to be read and compiled on the fly.
But PHP has also some tricks to improve speed by compiling it…
At the end the speed of ASP.NET and PHP should be the same.
So this shouldn’t be your main issue. You should have to focus instead on:
Having an scalable web site that allows you to have several web servers in a cluster to allow your site to handle all the users
Trying not to use session variables if possible to make easier the cluster