a friend of mine told me recently "to optimize your site you may want compile your php files" and i was like "what?"
i honestly i never heard of that, i'm a "advanced-naive" prgrammer, that means i'm self taught, i built complex sites but i'm still missing something...
bottom line: what does it mean compile php? convert them in exe files? why? is faster?
Source: Tips4all, CCNA FINAL EXAM
While PHP code needs to be interpreted on every call, bytecode is precompiled code that runs almost instantly.
ReplyDeleteMostly you will only really need it, if you are running a larger website.
The following tools can be used to compile scripts or run compiled scripts:
eAccelerator
Zend Optimizer
PHC (http://www.phpcompiler.org/)
Alternative PHP Cache (APC)
Unless you're after serious performance then compiling PHP using something like Facebook's HipHop is probably a bit excessive.
ReplyDeleteI'd just install/configure APC on your machine which will cache the compiled bytecode and should give you an instant performance boost.
Facebook use such things. Their product is hiphop, and it's free.
ReplyDeleteThe idea of a compiler, is to convert human readble code (C, PHP, Java etc), into machine readable code. When you execute your PHP scripts, they are interpreted (almost inline compilation), which means they are read a line by line, and the code is executed accordingly.
ReplyDeleteCompiled code, means that it is compiled at source, therefore is already in machine language (or byte code for VM languages like Java), and therefore, the server does not have to interpret the code each time. This makes it quicker.
Facebook created a PHP compiler to speed up their site. The idea of compiled code is that usually, once it is written, it doesn't change for a while, so there is an overhead in having to interpret it into machine language each time the code is executed. That is why your friend means by optimize.
It will therefore be converted into machine language or bytecode (not exe, but effecively the same concept).
The bigger your application the more sense this makes. PHP loads your whole program into memory and then compiles it on the fly: meaning as it needs to be used. So if you pre-compile it should skip that step. Facebook does something like this. The translate their php into C++ via something called hip hop. Not exactly the same thing but you get the idea.
ReplyDeleteI doubt this will show you much difference on smaller applications.