How to remove element from list in Redis by value?
If the list contains strings then you may enclose it with double quotes then it works!
eg: sampleList ["one", "two", "three", "four"] If you want to remove "three" then use:
LREM sampleList 1 "three"
http://redis.io/commands/lrem
Lrem is what you are looking for. use LREM POST:544 1 36.