An open API service indexing awesome lists of open source software.

https://github.com/quickfixgo/perf


https://github.com/quickfixgo/perf

Last synced: 3 months ago
JSON representation

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 metrics

OR

1. Build executables
```bash
make all
```
2. Run performance test
```bash
./run-inbound-perf.sh
```