When I came to know about APC I was surfing the net. The information I found is very confusing because in some cases it says that it will compile the PHP code and cache in advance. And some other websites show some code in cache variables.
My first question is: Does the APC code already compile it or do you use it in the memory data like memcache?
My second question is: If the APC actually pre-compiles the code, is it better to use it with a memcatch or not?
PS: If you have more information about promoting PHP episodes, please advise you.
You can use both of them.
The APC will compile your contents in PHP on the PHP and the webserver to cache these uploads, so on each subsequent time a php script is called, it is not parsed and is not compiled. Turning on APC can give you significant speed improvements.
The memcheus API acts as the in-memory hashtable for API data (not the opoad cache) which remains between the PHP script call, the power that it can easily be distributed Most people Use it to take loads from your database.
Comments
Post a Comment