7 lines
169 B
V
7 lines
169 B
V
module redisclient
|
|
|
|
// load a script and return the hash
|
|
pub fn (mut r Redis) script_load(script string) !string {
|
|
return r.send_expect_str(['SCRIPT LOAD', script])!
|
|
}
|