Home  >  Article  >  Backend Development  >  Why is php faster than java?

Why is php faster than java?

angryTom
angryTomOriginal
2019-10-21 09:21:252462browse

Why is php faster than java?

Why is PHP faster than Java? Only other tools can do it, but as far as developing a website

is concerned, PHP is indeed more efficient than Java, especially for relatively simple projects.

First of all, the architecture of Java is more complicated than Php. Let’s not talk about various development frameworks. Jsp and Class files should be separated. ORM should be used to connect to the database. Compare the versions of various commonly used open source packages. , the lower layer of the http server needs a servlet container. The Php architecture is very simple. In theory, just write the Php file and put it in the http server. Reading and writing the mysql database requires almost no additional tools. As for MVC, developing serious projects requires both Php and Java. Object-oriented programming in Java must always be adhered to, while PHP often only partially does this, and most of the rest adopts a process-oriented approach (although this part is often also disguised as object-oriented).

Second, Php uses weakly typed variables. No matter what variable you want to define, a $ is enough, and there is almost no need to worry about conversion issues. Java does not, numbers are numbers, strings are strings, this is Java One reason for high efficiency is also a reason why development is slower than Php.

Third, low-cost Java projects cannot solve the problem of high concurrency of the website. It is not easy for a single Tomcat, Jetty or Jboss to support 1,000 concurrencies. Java consumes too much system resources. In some small projects, that is, if your server is only one machine, develop a website with the same function. Assume that the function is very simple, just a news reading station. If Java can allow up to 3,000 people If accessed at the same time, PHP allows at least tens of thousands of people to access at the same time.

The computing efficiency of Java is higher than that of Php, but a large number of operations in website projects occur at the database level, and this advantage of Java cannot be used. For example, there are 100,000 articles, and comparing their relevance, Java is much more suitable for doing this than Php.

For more PHP related knowledge, please visit

PHP Chinese website

!

The above is the detailed content of Why is php faster than java?. For more information, please follow other related articles on the PHP Chinese website!

Statement:
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn