mirror of
http://github.com/valkey-io/valkey
synced 2024-11-22 18:54:58 +00:00
b087dd1db6
* Introduce a connection abstraction layer for all socket operations and integrate it across the code base. * Provide an optional TLS connections implementation based on OpenSSL. * Pull a newer version of hiredis with TLS support. * Tests, redis-cli updates for TLS support.
13 lines
326 B
Tcl
13 lines
326 B
Tcl
source tests/support/redis.tcl
|
|
source tests/support/util.tcl
|
|
|
|
set ::tlsdir "tests/tls"
|
|
|
|
proc bg_complex_data {host port db ops tls} {
|
|
set r [redis $host $port 0 $tls]
|
|
$r select $db
|
|
createComplexDataset $r $ops
|
|
}
|
|
|
|
bg_complex_data [lindex $argv 0] [lindex $argv 1] [lindex $argv 2] [lindex $argv 3] [lindex $argv 4]
|