LREMRemove elements equal to the given value from a list.
| Syntax | LREM key count element |
| Group | list |
| Arity | 4 |
| Since | 1.0.0 |
| Flags | write |
| Complexity | O(N*R) worst case — the scan is O(N) but each removal shifts up to half the deque (Redis is O(N+R)) |
| Redis compatibility | full |