summaryrefslogtreecommitdiffstats
path: root/system/libraries/Cache/drivers/Cache_redis.php
AgeCommit message (Collapse)AuthorFilesLines
2016-12-31Update copyright data to 2017Master Yoda1-2/+2
2016-09-27Add database index by defaultlogach1-1/+7
Select database if exists
2016-03-14Unix socket check in one long lineMasterklavi1-8/+1
2016-03-14Removed a space charMasterklavi1-1/+1
2016-03-14Added the timeout value for the UNIX socket checkMasterklavi1-1/+3
2016-03-14Fixed bracketsMasterklavi1-1/+1
2016-03-14UNIX socket checkMasterklavi1-0/+5
2016-03-12Removed the second condition for unix socketsMasterklavi1-11/+1
2016-03-12[ci skip] Removed leftovers from the old serialization logic in Cache_redisAndrey Andreev1-11/+0
2016-03-12Add changelog entries for and polish changes from PRs #4528, #4530Andrey Andreev1-16/+36
2016-03-12Added the expiration to save() methodMasterklavi1-2/+9
2016-03-12Merge pull request #4528 from masterklavi/redis_data_typeAndrey Andreev1-30/+18
Refactor data serialization logic for Cache_redis
2016-03-12Changed a condition in the get method to empty()Masterklavi1-1/+1
2016-03-12Removed an extra space charMasterklavi1-1/+1
2016-03-12Fixed a condition in the get methodMasterklavi1-1/+1
2016-03-12Removed an unnecessary array() initializationMasterklavi1-1/+0
2016-03-12The "$config" variable is moved to "if" conditionMasterklavi1-2/+5
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-12Fixed an indent of descriptionMasterklavi1-2/+2
2016-03-12Setup the data defining for stored dataMasterklavi1-5/+6
2016-03-12Fixed the index existence errorMasterklavi1-2/+2
2016-03-12Changed the methods of working with serializable valuesMasterklavi1-30/+17
2016-03-12Added variables to Docblocks where they are skippedMasterklavi1-4/+4
2016-03-11Fix a number of CI_Cache bugsAndrey Andreev1-0/+6
Fixes #4277 Supersedes #4474 Really fixes #4066
2016-01-11[ci skip] Update ellislab.com links to https tooAndrey Andreev1-1/+1
2016-01-11[ci skip] Update codeigniter.com links to httpsAndrey Andreev1-1/+1
2016-01-11[ci skip] Bump year to 2016Andrey Andreev1-2/+2
2015-09-14Fix #4044Andrey Andreev1-5/+5
2015-08-31Fix #4066Andrey Andreev1-10/+4
2015-06-22Fix #3913Andrey Andreev1-68/+57
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-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.
2015-02-22Cache: is_supportedFieah1-5/+3
1. Cache_redis: Standardize the style as other driver. 2. Cache_wincache: Also check wincache.ucenabled
2015-01-21Remove closing blocks at end of PHP filesvlakoff1-3/+0
2015-01-09Bulk (mostly documentation) updateAndrey Andreev1-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 #3293Andrey Andreev1-14/+25
2014-08-18Fix a wrong variable name from previous commitAndrey Andreev1-1/+1
Rel: #3186
2014-08-18Optimize Redis serialized values supportAndrey Andreev1-17/+19
Rel: PR #3186
2014-08-18Cache_redis: A code-styling correction..Ivan Tcholakov1-1/+1
2014-08-18Cache_redis: Optimizations.Ivan Tcholakov1-2/+2
2014-08-18Cache_redis: Polishing.Ivan Tcholakov1-7/+4
2014-08-18Cache_redis: Refactoring if delete() method.Ivan Tcholakov1-3/+3
2014-08-18Cache_redis, save() method: An optimization, moving sRemove call.Ivan Tcholakov1-2/+1
2014-08-18Cache_redis, delete() method: Try to remove a key from Redis auxilary set ↵Ivan Tcholakov1-3/+6
only when the corresponding value is really deleted.