summaryrefslogtreecommitdiffstats
path: root/system/libraries/Cache
AgeCommit message (Collapse)AuthorFilesLines
2019-11-01[ci skip] Merge pull request #5861 from nebkat/patch-1Andrey Andreev1-1/+1
cache: redis: Check version of redis not phpredis
2019-10-10fix static field nameClaudio Galdiolo1-1/+1
field with name $_delete_name already defined, use $_sRemove_name
2019-10-08Merge pull request #5842 from sapics/chore/fix-indentAndrey Andreev3-12/+12
Fix indentation / clear whitespace
2019-10-08[ci skip] Fix #5840Andrey Andreev1-5/+22
2019-09-18[ci skip] Update Cache library Redis driver to work with phpRedis 5, ↵Andrey Andreev1-1/+12
similarly to PR #5816 (also add changelog entry)
2019-05-11[ci skip] Merge pull request #5753 from exussum12/fixIncrRedisAndrey Andreev1-2/+2
Fix increment / decrement in redis
2019-05-10Update Cache_redis.phpScott Dutton1-1/+1
2019-05-08Fix increment / decrementScott Dutton1-3/+3
also fixed a value incorrectly returned docblock says array but bool returned
2019-05-08Alterntive redis fixScott Dutton1-12/+3
2019-01-02Merge pull request #5662 from jim-parry/copyright2019Instructor, BCIT7-21/+21
Update copyright date to 2019
2018-12-17[ci skip] Merge pull request #5651 from pawelkg/developAndrey Andreev1-1/+1
Test if cache file is writable before unlink it
2018-01-09[ci skip] Merge pull request #5376 from jim-parry/copyright-updateAndrey Andreev7-14/+14
Annual copyright update Conflicts resolved: system/libraries/Cache/drivers/Cache_apcu.php
2018-01-05[ci skip] Merge pull request #5369 from tianhe1986/develop_cache_memcacheAndrey Andreev1-2/+12
Cache_memcached: setting initial value with increment/decrement when not exist
2017-09-25[ci skip] Fix potential object injection in apc cache driver; deprecate the ↵Andrey Andreev1-26/+22
apc driver
2017-01-17[ci skip] Merge pull request #4986 from ka7/feature/spellingAndrey Andreev1-1/+1
Spelling fixes in comment blocks and docs
2017-01-03Update copyright data to 2017Master Yoda7-14/+14
2016-08-11Merge pull request #4762 from tianhe1986/develop_cache_file_metadataAndrey Andreev1-2/+2
Cache_file: use $data['time'] for calculating expired time.
2016-08-11Merge pull request #4761 from tianhe1986/develop_cache_file_checkAndrey Andreev1-2/+2
Cache_file: use is_file() for checking instead of file_exists().
2016-05-20Merge pull request #4638 from kasimtan/phpdoc_fixesAndrey Andreev1-1/+1
[ci skip] Fixed PHPDoc parameter name and type discrepancies
2016-04-01[ci skip] Fix #4562Andrey Andreev1-1/+1
2016-03-12Merge pull request #4526 from masterklavi/redis_refactorAndrey Andreev1-3/+5
Remove an unnecessary assignment from Cache_redis configuration
2016-03-12Merge pull request #4524 from masterklavi/memcached_refactoringAndrey Andreev1-12/+4
Cache_memcached configuration refactoring
2016-03-12Merge pull request #4525 from masterklavi/memcached_instanceofAndrey Andreev1-4/+4
Use instanceof instead of get_class() in Cache_memcached
2016-03-12Merge pull request #4521 from masterklavi/redis_docblockAndrey Andreev1-6/+6
[ci skip] Added missing variable names to Cache_redis docblocks
2016-03-12Merge pull request #4523 from masterklavi/memcached_docblockAndrey Andreev1-2/+2
[ci skip] Added missing variable names to Cache_memcached docblocks
2016-03-12Merge pull request #4522 from masterklavi/memcached_destructAndrey Andreev1-0/+21
Added destructor to Cache_memcached
2016-03-11Fix a number of CI_Cache bugsAndrey Andreev4-16/+45
Fixes #4277 Supersedes #4474 Really fixes #4066
2016-01-11[ci skip] Update ellislab.com links to https tooAndrey Andreev7-7/+7
2016-01-11[ci skip] Update codeigniter.com links to httpsAndrey Andreev7-7/+7
2016-01-11[ci skip] Bump year to 2016Andrey Andreev7-14/+14
2015-09-14Fix #4044Andrey Andreev1-5/+5
2015-08-31[ci skip] Fix #4091Andrey Andreev1-1/+1
2015-08-31Fix #4066Andrey Andreev2-18/+6
2015-07-05supported key_prefix on `increment` and `decrement`ftwbzhao1-2/+2
2015-06-22A small optimization in CI_Cache::is_supported()Andrey Andreev1-3/+2
As it was, the static variable was always re-set to an empty array
2015-06-22Fix #3913Andrey Andreev2-139/+128
2015-05-13[Cache]minor adjustments for save functionftwbzhao1-3/+1
2015-05-07Revert "Issue/PR #3836"Andrey Andreev1-6/+2
This reverts commit 170ae282338584ebe257d2fb21101ccf84a3f800.
2015-05-07Issue/PR #3836Andrey Andreev1-2/+6
2015-04-28Removed extra adapter validation. Adapter validation already happens in the ↵Tyler Brownell1-18/+2
system Driver library.
2015-04-27Adds error-level log messages when invalid adapters are set.Tyler Brownell1-0/+8
2015-04-24Reverts previous variable renaming and removes the foreach loop in favor of ↵Tyler Brownell1-24/+23
a simple if condition.
2015-04-23Renames $_adapter to $_driver. It's what we call it everywhere else.Tyler Brownell1-14/+14
2015-04-23Cache Library Defaults FixedTyler Brownell1-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-23Updates the fallback driver variable name to match the config option name.Tyler Brownell1-6/+6
2015-04-09Merge branch 'develop' of https://github.com/bcit-ci/CodeIgniter into developftwbzhao1-2/+2
2015-04-09[fix] redis get_metadataftwbzhao1-1/+1
2015-04-09use = instead of +=ftwbzhao1-1/+1
2015-04-07[feature] check redis auth failedftwbzhao1-1/+5
2015-03-22Fixed redis cache save logicMathew White1-1/+1
It was trying to use sAdd as a check if the key was created, but that will return false if it is already present in the set.