PythonShell上:
In [1]: db.lpush("hello","test") Out[1]: 1L In [2]: db.lrem("hello",0,"test") Out[2]: 0L redis-cli上: redis 127.0.0.1:6379> lrem hello 0 test (integer) 1
你用反了
db.lrem("hello", "test", 0);