summaryrefslogtreecommitdiffstats
path: root/iredis/data/commands/script-exists.md
diff options
context:
space:
mode:
Diffstat (limited to 'iredis/data/commands/script-exists.md')
-rw-r--r--iredis/data/commands/script-exists.md16
1 files changed, 8 insertions, 8 deletions
diff --git a/iredis/data/commands/script-exists.md b/iredis/data/commands/script-exists.md
index d27d771..758660c 100644
--- a/iredis/data/commands/script-exists.md
+++ b/iredis/data/commands/script-exists.md
@@ -2,17 +2,17 @@ Returns information about the existence of the scripts in the script cache.
This command accepts one or more SHA1 digests and returns a list of ones or
zeros to signal if the scripts are already defined or not inside the script
-cache. This can be useful before a pipelining operation to ensure that scripts
-are loaded (and if not, to load them using `SCRIPT LOAD`) so that the pipelining
+cache.
+This can be useful before a pipelining operation to ensure that scripts are
+loaded (and if not, to load them using `SCRIPT LOAD`) so that the pipelining
operation can be performed solely using `EVALSHA` instead of `EVAL` to save
bandwidth.
-Please refer to the `EVAL` documentation for detailed information about Redis
-Lua scripting.
+For more information about `EVAL` scripts please refer to [Introduction to Eval Scripts](/topics/eval-intro).
@return
-@array-reply The command returns an array of integers that correspond to the
-specified SHA1 digest arguments. For every corresponding SHA1 digest of a script
-that actually exists in the script cache, an 1 is returned, otherwise 0 is
-returned.
+@array-reply The command returns an array of integers that correspond to
+the specified SHA1 digest arguments.
+For every corresponding SHA1 digest of a script that actually exists in the
+script cache, a 1 is returned, otherwise 0 is returned.