X-Git-Url: https://git.saurik.com/redis.git/blobdiff_plain/ed9b544e10b84cd43348ddfab7068b610a5df1f7..1904ecc165735a859ef6a25fc7a8bd0c14505153:/doc/LremCommand.html diff --git a/doc/LremCommand.html b/doc/LremCommand.html index a2441ba2..f0585ef7 100644 --- a/doc/LremCommand.html +++ b/doc/LremCommand.html @@ -30,8 +30,6 @@ Time complexity: O(N) (with N being the length of the list)
Remove the first count occurrences of the value element from the list.If count is zero all the elements are removed. If count is negativeelements are removed from tail to head, instead to go from head to tailthat is the normal behaviour. So for example LREM with count -2 and_hello_ as value to remove against the list (a,b,c,hello,x,hello,hello) willlave the list (a,b,c,hello,x). The number of removed elements is returnedas an integer, see below for more information aboht the returned value.
The number of removed elements if the operation succeeded --1 if the specified key does not exist --2 if the specified key does not hold a list value