The PHP high-performance object caching system ever. phpFastCache is a high-performance, distributed object caching system, generic in nature, but intended for use in speeding up dynamic web applications by alleviating database load. phpFastCache dropped the database load to almost nothing, yielding faster page load times for users, better resou…
Simple PHP Cache Class | Fast PHP Caching Class php cache is free, open source that speed up your website. php caching class is a simple way to reduce mysql. support files, apc, memcached, wincache, xcache
I use phpfastcache with these settings:
phpFastCache::setup("storage","auto");
phpFastCache::setup("path", '/path/to/some/dir');
The auto
setting results in the use of the files
driver.
Whenever I call set
with a timeout the key I set does not expire. I need to flush the cache manually to make it expire. Any ideas?
Edit: Upgrading from version 2.0.1 to the latest 3.0.9 fixed the issue.
Source: (StackOverflow)