Simple-PHP-Cache icon indicating copy to clipboard operation
Simple-PHP-Cache copied to clipboard

A light, simple but powerful PHP5 Cache Class which uses the filesystem for caching.

Results 12 Simple-PHP-Cache issues
Sort by recently updated
recently updated
newest added

https://github.com/Wruczek/PHP-File-Cache I loved Simple-PHP-Cache, its small and portable, fits everywhere and is very simple. But the code is old, [buggy](https://github.com/cosenary/Simple-PHP-Cache/issues/23#issue-132841006) and unmaintained. I have released a full rewrite inspired by...

clear all cache file

Hey hi, simple cache 2 is comming or gived up? thanx

Thanks for this wonderful and simple caching library. It's exactly what I need! Just FYI, this notice occurs on line 105 of cache.class.php in my version of PHP, 5.6.14. The...

i Created a php file and run this code to grab a json and store in .cache file, Everytime i refresh the php page, cache is also refreshed, So Now...

When I call store(), only the first value is stored. It happens in a AWS instance, but not in my XAMPP. I can clear the cache and write again a...

I Put cache class into foreach loops but cache class only add/set one data into cache file. code: foreach($_POST['audio'] as $audio){ SQL::put("INSERT INTO " . NEWS_FILES . " (news_id, url,...

Changed both methods to consider expiration when checking and returning data. If $key existis but expired, isCached() will return false, and retrieve() will return null.

to preventing unnecessary IO i added an internal cache `private static $_soft_cache = NULL;` and for security reasons [which we should never encounter] i put general hash sum to cache...