MODULE UNLOAD
Syntax
MODULE UNLOAD name
Module
adminCategories
admin dangerous fastDescription
Unloads a module based on the its name as displayed by the MODULE LIST command.
Examples
- Go (Embedded)
- CLI
Unload a module:
db, err := sugardb.NewSugarDB()
if err != nil {
log.Fatal(err)
}
err := server.UnloadModule("module-name")
Unload a module:
> MODULE UNLOAD module-name