MODULE UNLOAD
MODULE UNLOAD name
- Available since:
- Redis Open Source 4.0.0
- Time complexity:
- O(1)
- ACL categories:
-
@admin,@slow,@dangerous, - Compatibility:
- Redis Software and Redis Cloud compatibility
Unloads a module.
This command unloads the module specified by name. Note that the module's name
is reported by the MODULE LIST command, and may differ from the dynamic
library's filename.
Known limitations:
- Modules that register custom data types can not be unloaded.
Required arguments
name
The name of the module to unload, as reported by MODULE LIST.
Redis Software and Redis Cloud compatibility
| Redis Software |
Redis Cloud |
Notes |
|---|---|---|
| ❌ Standard |
❌ Standard |
Return information
Simple string reply:
OK if the module was unloaded.