$redis->lrem not working #2544
-
When I am trying to run $redis->lrem($key, 0, 'deleted') It throws an exception. |
Beta Was this translation helpful? Give feedback.
Answered by
prakashnov07
Sep 15, 2024
Replies: 1 comment
-
Extremely Sorry ! I was following REM command which has $count as second arguement. But php-redis has $count as third arguement. Its working when I run $redis->lrem($key, 'deleted', 0) |
Beta Was this translation helpful? Give feedback.
0 replies
Answer selected by
prakashnov07
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Extremely Sorry ! I was following REM command which has $count as second arguement. But php-redis has $count as third arguement. Its working when I run $redis->lrem($key, 'deleted', 0)