X-Git-Url: https://git.saurik.com/redis.git/blobdiff_plain/8fb13ce816b85ac414921ecca420671bf74a3eea..12ebe2ac17a26ecf263f90b2acdf03db29b00223:/doc/AppendCommand.html diff --git a/doc/AppendCommand.html b/doc/AppendCommand.html new file mode 100644 index 00000000..c2d8ed5b --- /dev/null +++ b/doc/AppendCommand.html @@ -0,0 +1,48 @@ + + + +
+ + + +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" ++ +