I've heard of two caching techniques for the PHP code:

  1. When a PHP script generates output it stores it into local files. When the script is called again it check whether the file with previous output exists and if true returns the content of this file. It's mostly done with playing around the "output buffer". Somthing like this is described in this article.

  2. Using a kind of opcode caching plugin, where the compiled PHP code is stored in memory. The most popular of this one is APC, also eAccelerator.

Now the question is whether it make any sense to use both of the techniques or just use one of them. I think that the first method is a bit complicated and time consuming in the implementation, when the second one seem to be a simple one where you just need to install the module.

I use PHP 5.3 (PHP-FPM) on Ubuntu/Debian.

BTW, are there any other methods to cache PHP code or output, which I didn't mention here? Are they worth considering?

link|improve this question

60% accept rate
feedback

5 Answers

You should always have an opcode cache like APC. Its purpose is to speed up the parsing of your code, and will be bundled into PHP in a future version. For now, it's a simple install on any server and doesn't require you write or change any code.

However, caching opcodes doesn't do anything to speed up the actual execution of your code. Your bottlenecks are usually time spent talking to databases or reading to/from disk. Caching the output of your program avoids unnecessary resource usage and can speed up responses by orders of magnitude.

You can do output caching many different ways at many different places along your stack. The first place you can do it is in your own code, as you suggested, by buffering output, writing it to a file, and reading from that file on subsequent requests.

That still requires executing your PHP code on each request, though. You can cache output at the web server level to skip that as well. Crafting a set of mod_rewrite rules will allow Apache to serve the static files instead of the PHP code when they exist, but you'll have to regenerate the cached versions manually or with a scheduled task, since your PHP code won't be running on each request to do so.

You can also stick a proxy in front of your web server and use that to cache output. Varnish is a popular choice these days and can serve hundreds of times more request per second with caching than Apache running your PHP script on the same server. The cache is created and configured at the proxy level, so when it expires, the request passes through to your script which runs as it normally would to generate the new version of the page.

link|improve this answer
you are downvoting me, but your information is WRONG!!!! – Alfred Jan 27 '11 at 21:35
You've improved your answer since I downvoted it. Calm down. And tone down the redis fanboy-ism. – Dan Grossman Jan 27 '11 at 21:37
No I can't calm down, you are downvoting me(without any right reason). If you had valid reasons to do so I could understand that. But I am trying to help PHPGuy and all I get is downvoted. – Alfred Jan 27 '11 at 21:39
@Dan Grossman: so are you suggesting to use APC along with code caching ob_start, or just APC on its own? I read your answer now, I asked another question about similar subject here in case you are interested in answering: stackoverflow.com/questions/9977442/… – Marco Demaio Apr 2 at 13:49
If you're caching entire pages, doing it in code like that is the least efficient way possible. You'd want to cache at the web server level, probably by sticking a fast caching proxy like Varnish in front of the application server. – Dan Grossman Apr 5 at 20:55
feedback

A lot of times, when it comes to PHP web applications, the database is the bottleneck. As such, one of the best things you can do is to use memcached to cache results in memory. You can also use something like xhprof to profile your code, and really dial in on what's taking the most time.

link|improve this answer
If you only have one box the network overhead with memcached is a waste in my opinion. Just use APC to cache your data(php.net/manual/en/function.apc-add.php). – Alfred Jan 27 '11 at 22:20
feedback

Yes, those are two different cache-techniques, and you've understood them correctly.

but beware on 1):

1.) Caching script generated output to files or proxies may render problems if content change rapidly.

2.) x-cache exists too and is easy to install on ubuntu.

regards, /t

link|improve this answer
feedback

IDK if this really would work, but I came across a performance problem with a PHP script that I had. I have a plain text file that stores data as a title and a URL tab separated with each record separated by a new line. Anyway, my script grabs the file at each URL and saves it to its own folder. Then I have another page that actually displays the local files (in this case, pictures) and I use a preg_replace() to change the output of each line from the remote url to a relative one so that it can be displayed by the server. Well, my tab separated file is now over 1MB and it takes a few SECONDS to do the preg_replace(), so I decided to look into output caching. I couldn't find anything definitive, so I figured I would try my own hand at it and here's what I came up with.

When I request the page to view stuff locally, I try to read it from a variable in a global scope. If this is empty, it might be that this application hasn't run yet and this global needs populated. If it was empty, read from an output file (plain html file that literally shows everything to output) and save the contents to the global variable and then display the output from the global. Now, when the script runs to update the tab separated file, it updates the output file and the global variable. This way, the portion of the script that actually does the stuff that runs slowly only runs when the data is being updated.

Now I haven't tried this yet because I'm in the middle of a redesign and this is only for a private web server on my laptop and I have 3 jobs. I don't have a lot of time to actually do this, but theoretically, this should improve my performance a lot, although it does actually still run the script, but the data would never be out of date and I should get a much better load time.

Hope this helps.

link|improve this answer
feedback

Now the question is whether it make any sense to use both of the techniques or just use one of them. I think that the first method is a bit complicated and time consuming in the implementation, when the second one seem to be a simple one where you just need to install the module.

If you want to do it right, use only APC. It can store variables in shared memory using apc_add, which is much faster than filesystem access.

BTW, are there any other methods to cache PHP code or output, which I didn't mention here? Are they worth considering?

To cache your code you should use APC. You could use redis or memcached to cache the rest of your output/data. That is especially useful when one box can't handle the scale anymore. In my opinion you should always use redis because it is lightning fast in memory database.

The Linux box is running Linux 2.6, it's Xeon X3320 2.5Ghz.
Results: about 110000 SETs per second, about 81000 GETs per second.

Redis is an open source, advanced key-value store. It is often referred to as a data structure server since keys can contain strings, hashes, lists, sets and sorted sets.

You should look at these slides/tutorial from Simon to get a better picture of the sheer power of redis.

link|improve this answer
1  
Opcode caching doesn't cache output, it only speeds up the parsing step. Most of the time is spent executing your code, talking to databases, reading files, etc. not parsing. – Dan Grossman Jan 27 '11 at 21:28
@Dan you are completely wrong about all of that(parsing is expensive=> especially on high load! You shouldn't even be talking much to the database when you are using APC!). It caches output(variables). You should look closer at the API => php.net/manual/en/function.apc-add.php. You don't have any clue what you are talking about and are just downvoting me! ZZZZZZZZZZZZZZZZZ – Alfred Jan 27 '11 at 21:30
Could you people please explain the downvoting? – Alfred Jan 27 '11 at 21:34
OK: Opcode Cache has really nothing to do with caching of output or variables. Thats just an additional feature of APC. Next, with opcode cache you just cache the opcodes, what doesnt speed up the execution in any way. Depending on what the application does (especially when external resource (db) are involved) the parsing can (Note: can) get insignificant. So your answer is not wrong at all, but not right and quite misleading. Dan is right, when he says, that you should both, because both take care of quite different optimizations. – KingCrunch Jan 27 '11 at 21:45
@KingCrunch You guys think that my answer is wrong(I think you are all wrong). You should cache your output(in variables) using APC. You should always avoid trying to touch the disc(like some are saying?). You guys should watch this video from author of PHP => archive.org/details/simple_is_hard(slides are talks.php.net/show/drupal08) and then try and answer the question again. You will see that my answer isn't as bad as you guys assume! – Alfred Jan 27 '11 at 21:56
show 1 more comment
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.