summaryrefslogtreecommitdiffstats
path: root/iredis/data/commands/function-delete.md
diff options
context:
space:
mode:
Diffstat (limited to 'iredis/data/commands/function-delete.md')
-rw-r--r--iredis/data/commands/function-delete.md23
1 files changed, 23 insertions, 0 deletions
diff --git a/iredis/data/commands/function-delete.md b/iredis/data/commands/function-delete.md
new file mode 100644
index 0000000..5b90f81
--- /dev/null
+++ b/iredis/data/commands/function-delete.md
@@ -0,0 +1,23 @@
+Delete a library and all its functions.
+
+This command deletes the library called _library-name_ and all functions in it.
+If the library doesn't exist, the server returns an error.
+
+For more information please refer to [Introduction to Redis Functions](/topics/functions-intro).
+
+@return
+
+@simple-string-reply
+
+@examples
+
+```
+redis> FUNCTION LOAD Lua mylib "redis.register_function('myfunc', function(keys, args) return 'hello' end)"
+OK
+redis> FCALL myfunc 0
+"hello"
+redis> FUNCTION DELETE mylib
+OK
+redis> FCALL myfunc 0
+(error) ERR Function not found
+```