6 个版本 (3 个破坏性更新)
0.4.0 | 2023 年 7 月 4 日 |
---|---|
0.3.0 | 2023 年 3 月 22 日 |
0.2.1 | 2023 年 3 月 21 日 |
0.1.1 | 2023 年 2 月 26 日 |
#201 in WebSocket
每月下载 31 次
34KB
763 代码行
Nostr 中继基准构建器
cargo install nostr-bench
nostr-bench --help
# Usage: nostr-bench <COMMAND>
#
# Commands:
# connect Benchmark create websocket connections
# echo Benchmark send websocket message, the server should send back the message
# event Benchmark publish nostr event
# req Benchmark request nostr event
# help Print this message or the help of the given subcommand(s)
nostr-bench connect --help
# Usage: nostr-bench connect [OPTIONS] <URL>
#
# Arguments:
# <URL> Nostr relay host url
#
# Options:
# -c, --count <NUM> Max count of clients [default: 100]
# -r, --rate <NUM> Start open connection rate every second [default: 50]
# -k, --keepalive <NUM> Close connection after second, ignore when set to 0 [default: 0]
# -t, --threads <NUM> Set the amount of threads, default 0 will use all system available cores [default: 0]
# -i, --interface <IP> Network interface address list
# --json Display stats information as json, time format as milli seconds
# -h, --help Print help
获取更多连接
由于系统限制网络接口最多连接 64k,您可以设置 --interface
以绑定更多接口来增加连接数
nostr-bench connect 'ws://127.0.0.1:8080' --interface 192.168.0.2 --interface 192.168.0.3
增加资源使用限制
Linux
ulimit -n 1000000
sudo sysctl -w net.ipv4.ip_local_port_range="1025 65534"
Mac OS
ulimit -n 1000000
# sysctl net.inet.ip.portrange
sudo sysctl -w net.inet.ip.portrange.first=1025
sudo sysctl -w net.inet.ip.portrange.last=65534
依赖项
~19–33MB
~540K SLoC