X-Git-Url: https://git.saurik.com/redis.git/blobdiff_plain/efc3408748061a08ec5ff18e392c30f31f5094a2..06e09c9b586d0e2c5d91dc596f871be56c6e0971:/doc/SdiffCommand.html diff --git a/doc/SdiffCommand.html b/doc/SdiffCommand.html deleted file mode 100644 index 7aef28b9..00000000 --- a/doc/SdiffCommand.html +++ /dev/null @@ -1,45 +0,0 @@ - - - -
- - - -Return the members of a set resulting from the difference between the firstset provided and all the successive sets. Example:-
-key1 = x,a,b,c -key2 = c -key3 = a,d -SDIFF key1,key2,key3 => x,b -
Non existing keys are considered like empty sets.-