-
-
Notifications
You must be signed in to change notification settings - Fork 2k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Modify Redis Backend #11141
Closed
Closed
Modify Redis Backend #11141
Conversation
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
2. Cache redis backend supports "reds" client option
@sergeyklay Sorry for the inconvenience😢 |
Added ability to change document class to be returned in ODM
if set value must be: this->_readed = true;
phalcon#11042 - Fix setting relation should not always cause dirty state change
Memcache has an internal lifetime limit of 30 days, see http://stackoverflow.com/questions/1418324/memcache-maximum-key-expiration-time Setting something upper to this limit leads to having blank writes with no error, breaking the purpose of the session.
min it is, sorry
Updated Oracle PDO Adapter to describe DATE column
Fixed misspelling [ci skip]
Retrieving ondelete and onupdate key constraints in the MySQL adapter
…ngly and threw in a unit test to boot.
Dispatcher does not set last handler
…dd unit tests to verify the default log level is applied across multiple logs.
[2.0.x] setLogLevel method to Multiple Logger
…s to verify the fix.
[2.0.x] Issue phalcon#11286 - Model property visibility and setter functionality
Fexed Gettext::prepareOptions visiblity
If currentColumn is missing use column parametr. prevent: ERROR: RuntimeException Object ( [message:protected] => Trying to call method getname on a non-object ... )
Port from: fix modifyColumn phalcon#11437
Added a couple tests for \Phalcon\Http\Request
2. Cache redis backend supports "reds" client option
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Changes
Why
_PHCR
to store all keys used by cache. There is a issue: why the backend cache redis add the special key(statsKey) _PHCR #10905 .According to @Green-Cat ,it is disabled in 2.0.x branch which is not true. If use_PHCR
, every time we set a cache, we have to runsAdd
andset
commands. Store all keys in_PHCR
will cause it expands quickly and this will influence performance.libmemecached
backend has supplied the option to disable this feature.