mirror of
https://codeberg.org/redict/redict.git
synced 2025-01-22 08:08:53 -05:00
50ee0f5be8
Based on feedback from interested parties
25 lines
675 B
Tcl
25 lines
675 B
Tcl
# SPDX-FileCopyrightText: 2024 Redict Contributors
|
|
# SPDX-FileCopyrightText: 2024 Salvatore Sanfilippo <antirez at gmail dot com>
|
|
#
|
|
# SPDX-License-Identifier: BSD-3-Clause
|
|
# SPDX-License-Identifier: LGPL-3.0-only
|
|
|
|
source tests/support/redict.tcl
|
|
|
|
set ::tlsdir "tests/tls"
|
|
|
|
proc gen_write_load {host port seconds tls} {
|
|
set start_time [clock seconds]
|
|
set r [redict $host $port 1 $tls]
|
|
$r client setname LOAD_HANDLER
|
|
$r select 9
|
|
while 1 {
|
|
$r set [expr rand()] [expr rand()]
|
|
if {[clock seconds]-$start_time > $seconds} {
|
|
exit 0
|
|
}
|
|
}
|
|
}
|
|
|
|
gen_write_load [lindex $argv 0] [lindex $argv 1] [lindex $argv 2] [lindex $argv 3]
|