We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
Describe the bug RedisHandler does not working on sessionExpiration=0.
CodeIgniter 4 version v4.0.3
Affected module(s) CodeIgniter\Session\Handlers\RedisHandler
Expected behavior, and steps to reproduce if appropriate i changed to redis session handler. a website responded very slow and occured error.
Session: Unable to obtain lock for ci_session:1ifssq8spcfduehb418uk09fajq92li3 after 30 attempts, aborting.
i trace to this error. it seem to fail set value to Redis because sessionExpiration is zero.
if ($this->redis->set($this->keyPrefix . $sessionID, $sessionData, $this->sessionExpiration))
ci4 docs say sessionExpiration=0 is "non-expiring session (until browser is closed)" but it actually work to set TTL zero (then set action fail)
Please consider this issue. thank you.
Context
The text was updated successfully, but these errors were encountered:
d5128c1
No branches or pull requests
Describe the bug
RedisHandler does not working on sessionExpiration=0.
CodeIgniter 4 version
v4.0.3
Affected module(s)
CodeIgniter\Session\Handlers\RedisHandler
Expected behavior, and steps to reproduce if appropriate
i changed to redis session handler.
a website responded very slow and occured error.
i trace to this error. it seem to fail set value to Redis because sessionExpiration is zero.
ci4 docs say sessionExpiration=0 is "non-expiring session (until browser is closed)" but it actually work to set TTL zero (then set action fail)
Please consider this issue.
thank you.
Context
The text was updated successfully, but these errors were encountered: