Hello
What kind of output caching options are out there for PHP? I'm not sure what I need.
I'm trying to mimic some funcitonality I saw with ASP.NET.
What I'd like to do is cache the output of a PHP script for a defined period of time, and have thhe cache served up to clients. When the cache expires...just drop a new chunk og ourput into the cache during the next execution of the PHP script.
I'd like the caching mechanism to consider HTTP POST and QueryString values as well...so that means:
catalog.php
catalog.php?page=1
catalog.php?page=2
catalog.php?page=3
Will all yield different results, so the results from different combos of HTTP POst and QueryString variables should be cached, and the appropriate results should be returned to the client.
Is there anythign like this, or am I going to have to build it?
I looked at a few cimple caching classes, they were ok..but they didn't consider any HTTP Post or QueryString variables...