-
-
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
RedisEngine setTimeout has deprecated #14281
Comments
We don't use |
Fixed in the |
@sergeyklay understood . However version |
Same issue here for v3.4.4 and PhpRedis 5.0.2. |
Same issue in.
When run i get this message.
And my config is this. $session = new SessionRedis([
'host' => env('REDIS_HOST'),
'port' => env('REDIS_PORT', 6379),
'persistent' => false,
'uniqueId' => env('SESSION_ID', 'my-app'),
'lifetime' => env('SESSION_LIFETIME', 3600),
'prefix' => env('SESSION_PREFIX', 'my_')
]); |
We're not plan to release 3.x in near future. I'm sorry. In other hand, there are simple steps to build Phalcon from source code. This is so easily done that everyone can do it himself. Feel free to ping me in case of any building problem. |
We're release Phalcon v3.4.5 right now |
version 3.4.5 still has this issue |
@mahen3d As far, as I remember, you need to make own build from Latest See, for more details - https://docs.phalcon.io/3.4/en/installation#compile-from-sources |
setTimeout
function of Redis has deprecated so it should be replaced byexpire
function.right now it is throwing following exception.
phpredis/phpredis#1572
The text was updated successfully, but these errors were encountered: