benchito/README.md
Julien Riou bdab5cc5a4
chore: Update typo in README (plural form)
Signed-off-by: Julien Riou <julien@riou.xyz>
2022-10-09 20:21:51 +02:00

39 lines
No EOL
593 B
Markdown

# benchito
Like [pgbench](https://www.postgresql.org/docs/current/pgbench.html) or [sysbench](https://github.com/akopytov/sysbench) but only for testing maximum number of connections. `benchito` will start multiple threads to issue very simple queries in order to avoid CPU or memory starvation.
`benchito` supports:
* MySQL
* PostgreSQL
## Requirements
* `make`
* go 1.18
## Setup
Compile the `benchito` binary:
```
make
```
Start database instances:
```
docker-compose pull
docker-compose up -d
```
## Usage
```
./bin/benchito -help
```
## Cleanup
```
docker-compose down -v
```