Age | Commit message (Collapse) | Author | Files | Lines | |
---|---|---|---|---|---|
2018-12-27 | Update copyright date to 2019 | Jim Parry | 1 | -2/+2 | |
2018-05-18 | http:// to https:// | Mehdi Bounya | 1 | -2/+2 | |
2018-01-09 | Annual copyright update | Master Yoda | 1 | -2/+2 | |
2017-03-26 | Added method separator as comment. | George Petculescu | 1 | -0/+2 | |
2017-03-26 | Added get_loaded_driver() method to Cache.php; updated docs. | George Petculescu | 1 | -0/+10 | |
2017-02-20 | Add apcu driver into valid driver list | katsew | 1 | -0/+1 | |
Signed-off-by: katsew <y.katsew@gmail.com> | |||||
2016-12-31 | Update copyright data to 2017 | Master Yoda | 1 | -2/+2 | |
2016-01-11 | [ci skip] Update ellislab.com links to https too | Andrey Andreev | 1 | -1/+1 | |
2016-01-11 | [ci skip] Update codeigniter.com links to https | Andrey Andreev | 1 | -1/+1 | |
2016-01-11 | [ci skip] Bump year to 2016 | Andrey Andreev | 1 | -2/+2 | |
2015-07-05 | supported key_prefix on `increment` and `decrement` | ftwbzhao | 1 | -2/+2 | |
2015-06-22 | A small optimization in CI_Cache::is_supported() | Andrey Andreev | 1 | -3/+2 | |
As it was, the static variable was always re-set to an empty array | |||||
2015-04-28 | Removed extra adapter validation. Adapter validation already happens in the ↵ | Tyler Brownell | 1 | -18/+2 | |
system Driver library. | |||||
2015-04-27 | Adds error-level log messages when invalid adapters are set. | Tyler Brownell | 1 | -0/+8 | |
2015-04-24 | Reverts previous variable renaming and removes the foreach loop in favor of ↵ | Tyler Brownell | 1 | -24/+23 | |
a simple if condition. | |||||
2015-04-23 | Renames $_adapter to $_driver. It's what we call it everywhere else. | Tyler Brownell | 1 | -14/+14 | |
2015-04-23 | Cache Library Defaults Fixed | Tyler Brownell | 1 | -15/+6 | |
- Comments! - Updates the cache library to validate *both* adapters. - No longer attempts to set an undefined "memcached" class variable. - $key variable renamed to $driver_type (more descriptive). | |||||
2015-04-23 | Updates the fallback driver variable name to match the config option name. | Tyler Brownell | 1 | -6/+6 | |
2015-01-21 | Remove closing blocks at end of PHP files | vlakoff | 1 | -3/+0 | |
2015-01-09 | Bulk (mostly documentation) update | Andrey Andreev | 1 | -3/+3 | |
- Remove PHP version from license notices - Bump year number in copyright notices - Recommend PHP 5.4 or newer to be used - Tell Travis-CI to test on PHP 5.3.0 instead of the latest 5.3 version Related: #3450 | |||||
2014-10-27 | [ci skip] Switch to MIT license; close #3293 | Andrey Andreev | 1 | -14/+25 | |
2014-02-11 | 2013 > 2014 | darwinel | 1 | -1/+1 | |
Update copyright notices from 2013 to 2014. And update one calendar example in user_guide from year 2013/2014 to 2014/2015. | |||||
2014-01-09 | Implement atomic increment/decrement in Cache library | Andrey Andreev | 1 | -5/+34 | |
Requested via issue #109 Supersedes PR #241 | |||||
2013-07-24 | Cache Driver - Backup Never Loaded | Tyler Brownell | 1 | -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-01-01 | [ci skip] Happy new year | Andrey Andreev | 1 | -1/+1 | |
2012-11-25 | Added support for extending individual driver classes and driver unit tests | dchill42 | 1 | -6/+6 | |
Signed-off-by: dchill42 <dchill42@gmail.com> | |||||
2012-11-01 | Manually apply PR #1594 (fixing phpdoc page-level generation/warnings) | Andrey Andreev | 1 | -2/+3 | |
Also partially fixes issue #1295, fixes inconsistencies in some page-level docblocks and adds include checks in language files. | |||||
2012-10-27 | Style guide... | vkeranov | 1 | -1/+1 | |
2012-10-26 | Implement cache key prefixing (as suggested in #1197) and update the Cache docs | Andrey Andreev | 1 | -26/+32 | |
2012-06-09 | Cleanup the new Redis cache driver and add a changelog entry for it | Andrey Andreev | 1 | -1/+1 | |
2012-06-08 | Merge branch 'develop' of https://github.com/EllisLab/CodeIgniter into develop | Anton Lindqvist | 1 | -26/+44 | |
Conflicts: system/libraries/Cache/Cache.php | |||||
2012-05-28 | Fix issue where cache backup is ignored on first call. | Eric Roberts | 1 | -21/+17 | |
2012-05-17 | Clean up the libraries | Andrey Andreev | 1 | -2/+2 | |
2012-04-27 | Fix Cache, Image_lib and Log libraries | Timothy Warren | 1 | -1/+1 | |
2012-04-25 | Added missing commas. | Anton Lindqvist | 1 | -2/+2 | |
2012-04-25 | Align and sort valid cache drivers. | Anton Lindqvist | 1 | -7/+7 | |
2012-04-25 | Merge branch 'develop' of https://github.com/EllisLab/CodeIgniter into develop | Anton Lindqvist | 1 | -69/+52 | |
Conflicts: system/libraries/Cache/Cache.php | |||||
2012-04-20 | Start comment cleanup of libraries | Timothy Warren | 1 | -13/+35 | |
2012-03-26 | Switch private methods and properties to protected and cleanup the Cache ↵ | Andrey Andreev | 1 | -62/+47 | |
library and drivers | |||||
2012-03-12 | Fix some spaces and alignments in the new Wincache driver | Andrey Andreev | 1 | -12/+9 | |
2012-03-12 | Merge pull request #1095 from colonelchlorine/develop | Phil Sturgeon | 1 | -1/+1 | |
Added support for Wincache when running CI on Windows boxes | |||||
2012-03-09 | Bumped CodeIgniter's PHP requirement to 5.2.4. | Phil Sturgeon | 1 | -1/+1 | |
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-02-29 | Added support for Wincache when running CI on Windows boxes | Mike Davies | 1 | -1/+1 | |
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-01-21 | Added redis cache driver. | Anton Lindqvist | 1 | -1/+1 | |
2012-01-02 | Updating copyright date to 2012 | Greg Aker | 1 | -1/+1 | |
2011-12-25 | Improve the Cache library | Andrey Andreev | 1 | -18/+18 | |
2011-12-25 | Fixing soft tabs in a few files. | Greg Aker | 1 | -1/+1 | |
2011-10-20 | adding new license file (OSL 3.0) and updating readme to ReST | Derek Jones | 1 | -5/+17 | |
added notice of license to all source files. OSL to all except the few files we ship inside of the application folder, those are AFL. Updated license in user guide. incrementing next dev version to 3.0 due to licensing change | |||||
2011-07-02 | backed out 648b42a75739, which was a NON-trivial whitespace commit. It ↵ | Derek Jones | 1 | -15/+15 | |
broke the Typography class's string replacements, for instance | |||||
2011-04-25 | Fixed double-space typo. | Razican | 1 | -15/+15 | |