summaryrefslogtreecommitdiffstats
path: root/system/libraries/Cache
AgeCommit message (Collapse)AuthorFilesLines
2014-01-08Optimize get_instance() calls/assignmentsAndrey Andreev1-2/+2
2013-10-29Spaces, log messageKakysha1-2/+2
2013-10-28Code cleanupKakysha1-2/+4
2013-10-28some code rewriteKakysha1-3/+3
2013-10-28Correct Redis connection troubleshootingKakysha1-4/+11
2013-10-28Added option to connect through unix socket in redis cache driverKakysha1-1/+8
2013-07-30Cache Log Error LevelsTyler Brownell4-4/+4
The log messages in the cache drvier's is_supported calls are more suited for the debug level.
2013-07-24Cache Driver - Backup Never LoadedTyler Brownell1-1/+2
The condition that checks to see if the backup driver input is valid was prefixing the input with "cache_". Since the valid driver values don't have this prefix, the condition was always returning FALSE and the backup drivers were never being loaded. I've removed the prefix in the condition and added a debug log message for when the backup driver is used.
2013-07-18Fix a Memcache(d) default configuration bug (based on #249)Andrey Andreev1-18/+8
2013-07-17[ci skip] Just removing some empty linesAndrey Andreev1-1/+1
2013-05-20Removed unused variable $name in Cache_memcached.phpThallisPHP1-2/+2
2013-03-04Cache file driver: clean() now preserves .htaccess and index filesvlakoff1-1/+1
2013-02-21Disable autoloader call from class_exists() occurences to improve performanceAndrey Andreev1-2/+2
Note: The Driver libary tests seem to depend on that, so one occurence in CI_Loader is left until we resolve that.
2013-01-01[ci skip] Happy new yearAndrey Andreev7-7/+7
2012-12-03[ci skip] Cleaned some spacesAndrey Andreev2-5/+5
2012-11-25Added support for extending individual driver classes and driver unit testsdchill421-6/+6
Signed-off-by: dchill42 <dchill42@gmail.com>
2012-11-21Change fs permissions and add some missing index.html files (#2017)Andrey Andreev2-0/+20
2012-11-20Fix #18Andrey Andreev1-6/+9
2012-11-01Manually apply PR #1594 (fixing phpdoc page-level generation/warnings)Andrey Andreev7-14/+21
Also partially fixes issue #1295, fixes inconsistencies in some page-level docblocks and adds include checks in language files.
2012-10-27Style guide...vkeranov1-1/+1
2012-10-26Implement cache key prefixing (as suggested in #1197) and update the Cache docsAndrey Andreev1-26/+32
2012-07-13Some adjustments in inline documentationvlakoff1-1/+1
2012-06-17AND -> &&Andrey Andreev1-1/+1
2012-06-14A TTL of 0 will keep the cache persistant.Sean Fisher1-1/+1
2012-06-12Add changelog for pull #1017Andrey Andreev1-2/+2
2012-06-12Merge pull request #1017 from burakerdem/patch-1Andrey Andreev1-3/+3
Filesystem cache metadata function return correct TTL now.
2012-06-09Cleanup the new Redis cache driver and add a changelog entry for itAndrey Andreev2-48/+63
2012-06-08Fixed according to feedback.Anton Lindqvist1-5/+6
2012-06-08Merge branch 'develop' of https://github.com/EllisLab/CodeIgniter into developAnton Lindqvist6-46/+84
Conflicts: system/libraries/Cache/Cache.php
2012-06-07Deprecated do_hash() and read_file() in favor of hash() and ↵Andrey Andreev1-2/+2
file_get_contents() respectively
2012-06-04Merge pull request #1403 from cryode/bug/cache_backupPhil Sturgeon1-21/+17
Fix issue where cache backup is ignored on first call.
2012-06-02Replaced `==` with `===` and `!=` with `!==` in /system/librariesAlex Bilbie2-2/+2
2012-05-28Fix issue where cache backup is ignored on first call.Eric Roberts1-21/+17
2012-05-17Clean up the librariesAndrey Andreev3-4/+6
2012-04-27Fix Cache, Image_lib and Log librariesTimothy Warren1-1/+1
2012-04-25Added missing commas.Anton Lindqvist1-2/+2
2012-04-25Align and sort valid cache drivers.Anton Lindqvist1-7/+7
2012-04-25Merge branch 'develop' of https://github.com/EllisLab/CodeIgniter into developAnton Lindqvist6-180/+298
Conflicts: system/libraries/Cache/Cache.php
2012-04-23Added redis auth support.Anton Lindqvist1-0/+5
2012-04-20Start comment cleanup of librariesTimothy Warren6-27/+67
2012-03-29Fix for Issue 88. _default_options does not exist in the Cache_memcahe driverRyan Neufeld1-3/+3
2012-03-26Switch private methods and properties to protected and cleanup the Cache ↵Andrey Andreev6-170/+125
library and drivers
2012-03-12Fix some spaces and alignments in the new Wincache driverAndrey Andreev2-43/+38
2012-03-12Merge pull request #1095 from colonelchlorine/developPhil Sturgeon2-1/+168
Added support for Wincache when running CI on Windows boxes
2012-03-09Bumped CodeIgniter's PHP requirement to 5.2.4.Phil Sturgeon5-5/+5
Yes I know PHP 5.4 just came out, and yes I know PHP 5.3 has lovely features, but there are plenty of corporate systems running on CodeIgniter and PHP 5.3 still is not widely supported enough. CodeIgniter is great for distributed applications, and this is the highest we can reasonably go without breaking support. PHP 5.3 will most likely happen in another year or so. Fingers crossed on that one anyway...
2012-03-03Updated tabs, reinserted license, and fixed logic on get()Mike Davies1-25/+37
2012-02-29Added support for Wincache when running CI on Windows boxesMike Davies2-1/+156
Wincache is directly analogous to APC, except with less problems on a Windows environment. Performance wise they are almost identical (for user mode caching at least). Need to have the Wincache PHP module downloaded from http://www.iis.net/download/wincacheforphp.
2012-02-15Lowered the file permissions for file caches.Yorick Peterse1-1/+1
See #1045 for more information. Signed-off-by: Yorick Peterse <yorickpeterse@gmail.com>
2012-02-06Filesystem cache metadata function return correct TTL now.Burak Erdem1-2/+2
2012-01-23Updated redis driver doc block.Anton Lindqvist1-6/+18