ModuleLoadex Redis `MODULE LOADEX path [CONFIG name value [CONFIG name value ...]] [ARGS args [args ...]]` command.
(ctx context.Context, conf *ModuleLoadexConfig)
| 797 | |
| 798 | // ModuleLoadex Redis `MODULE LOADEX path [CONFIG name value [CONFIG name value ...]] [ARGS args [args ...]]` command. |
| 799 | func (c cmdable) ModuleLoadex(ctx context.Context, conf *ModuleLoadexConfig) *StringCmd { |
| 800 | cmd := NewStringCmd(ctx, conf.toArgs()...) |
| 801 | _ = c(ctx, cmd) |
| 802 | return cmd |
| 803 | } |
| 804 | |
| 805 | /* |
| 806 | Monitor - represents a Redis MONITOR command, allowing the user to capture |
nothing calls this directly
no test coverage detected