X-Git-Url: https://git.saurik.com/redis.git/blobdiff_plain/efc3408748061a08ec5ff18e392c30f31f5094a2..06e09c9b586d0e2c5d91dc596f871be56c6e0971:/doc/AppendCommand.html diff --git a/doc/AppendCommand.html b/doc/AppendCommand.html deleted file mode 100644 index c2d8ed5b..00000000 --- a/doc/AppendCommand.html +++ /dev/null @@ -1,48 +0,0 @@ - - - -
- - - -If the key already exists and is a string, this command appends theprovided value at the end of the string.If the key does not exist it is created and set as an empty string, soAPPEND will be very similar to SET in this special case.-
-redis> exists mykey -(integer) 0 -redis> append mykey "Hello " -(integer) 6 -redis> append mykey "World" -(integer) 11 -redis> get mykey -"Hello World" -- -