https://github.com/quickfixgo/perf
https://github.com/quickfixgo/perf
Last synced: 3 months ago
JSON representation
- Host: GitHub
- URL: https://github.com/quickfixgo/perf
- Owner: quickfixgo
- Created: 2014-05-19T16:52:24.000Z (almost 11 years ago)
- Default Branch: master
- Last Pushed: 2016-02-22T21:08:11.000Z (about 9 years ago)
- Last Synced: 2024-03-27T02:13:23.599Z (about 1 year ago)
- Language: Go
- Size: 3.91 KB
- Stars: 0
- Watchers: 2
- Forks: 4
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Performance Testing Frameworks for QuickFIX/Go
### Running
1. Start acceptor
```bash
go run inbound/main.go --fixconfig cfg/inbound.cfg --samplesize 100000
```
2. Start initiator
```bash
go run outbound/main.go --fixconfig cfg/outbound.cfg --samplesize 100000
```
3. Track the performance metricsOR
1. Build executables
```bash
make all
```
2. Run performance test
```bash
./run-inbound-perf.sh
```