diff --git a/doc/Credits.html b/doc/Credits.html index 751cce78..7504d5e3 100644 --- a/doc/Credits.html +++ b/doc/Credits.html @@ -26,7 +26,7 @@
Return the length of the list stored at the specified key. If thekey does not exist zero is returned (the same behaviour as forempty lists). If the value stored at key is not a list an error is returned.
-The length of the list as an integer `>=` 0 if the operation succeeded --2 if the specified key does not hold a list value -Note that library clients should raise an error if -2 is returned by the Redis server instead to pass the negative value back to the caller.
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
Move the specified key from the currently selected DB to the specifieddestination DB. Note that this command returns 1 only if the key wassuccessfully moved, and 0 if the target key was already there or if thesource key was not found at all, so it is possible to use MOVE as a lockingprimitive.-
+1 if the key was moved 0 if the key was not moved because already present on the target DB or was not found in the current DB. --3 if the destination DB is the same as the source DB --4 if the database index if out of rangeSee also
+
1 if the key was renamed 0 if the target key already exist --1 if the source key does not exist --3 if source and destination keys are the same
1 if the new element was added 0 if the new element was already a member of the set --2 if the key contains a non set value
Return the set cardinality (number of elements). If the key does notexist 0 is returned, like for empty sets. If the key does not holda set value -1 is returned. Client libraries should raise an errorwhen -1 is returned instead to pass the value to the caller.+Time complexity O(1)
Return the set cardinality (number of elements). If the key does notexist 0 is returned, like for empty sets.
-the cardinality (number of elements) of the set as an integer `>=` 0 if the operation succeeded --2 if the specified key does not hold a set value +the cardinality (number of elements) of the set as an integer.
Return 1 if member is a member of the set stored at key, otherwise0 is returned. On error a negative value is returned. Client librariesshould raise an error when a negative value is returned instead to passthe value to the caller.+Time complexity O(1)
Return 1 if member is a member of the set stored at key, otherwise0 is returned.
1 if the element is a member of the set 0 if the element is not a member of the set OR if the key does not exist --2 if the key does not hold a set value
1 if the new element was removed 0 if the new element was not a member of the set --2 if the key does not hold a set value
Return the type of the value stored at key in form of astring. The type can be one of "none", "string", "list", "set"."none" is returned if the key does not exist.-
+Return value
Status code reply, specifically:"none" if the key does not exist "string" if the key contains a String value "list" if the key contains a List value diff --git a/doc/UnstableSource.html b/doc/UnstableSource.html index 805f7f34..90afdfa3 100644 --- a/doc/UnstableSource.html +++ b/doc/UnstableSource.html @@ -29,6 +29,7 @@Get the latest Redis source code
Unstable code
The development version of Redis is hosted here at Github, have fun cloning the source code with Git. If you are not familar with Git just use the download button to get a tarball.Stable code
Warning: the development source code is only intended for people that want to develop Redis or absolutely need the latest features still not available on the stable releases. You may have a better experience with the latest stable tarball. +