- Uses memcached for storage
- Serves cache headers to clients based on TTL of cached data
- Uses custom headers to assemble multiple pieces of cache into one object
- Minimal dependencies. Only PHP and pecl/memcached needed.
- Small code base. It is just two files, one when settings are cached.
- Application agnostic. If the backend is hosted on an HTTP server this can cache it.
Some other things it does that you might expect:
- Handles HTTP 1.1 requests to the backend
- Allows TTLs set by the standard Cache-Control header
- Appears transparent to the client.
- Sends proper HTTP error codes relating to proxies/gateways
- Allows pages to be refreshed or removed from cache
- Allows a page to be viewed from the application server without caching it
- more....
You can find the code on Google Code. The code (or something like it rather) has been in use at dealnews for well over a year. But, this is a new code base. It had to be refactored for public consumption. So, there may be bugs.