mirror of https://github.com/redis/redis.git
6 lines
144 B
Tcl
6 lines
144 B
Tcl
|
proc redisbenchmark {host port {opts {}}} {
|
||
|
set cmd [list src/redis-benchmark -h $host -p $port]
|
||
|
lappend cmd {*}$opts
|
||
|
return $cmd
|
||
|
}
|