mirror of
https://github.com/openimsdk/open-im-server.git
synced 2025-04-05 20:11:14 +08:00
26 lines
395 B
Markdown
26 lines
395 B
Markdown
# Stress Test
|
|
|
|
## Usage
|
|
|
|
You need set `TestTargetUserList` and `DefaultGroupID` variables.
|
|
|
|
### Build
|
|
|
|
```bash
|
|
go build -o _output/bin/tools/linux/amd64/stress-test tools/stress-test/main.go
|
|
|
|
# or
|
|
|
|
go build -o tools/stress-test/stress-test tools/stress-test/main.go
|
|
```
|
|
|
|
### Excute
|
|
|
|
```bash
|
|
_output/bin/tools/linux/amd64/stress-test -c config/
|
|
|
|
#or
|
|
|
|
tools/stress-test/stress-test -c config/
|
|
```
|