https://github.com/benslabbert/catalog-server
https://github.com/benslabbert/catalog-server
Last synced: about 1 year ago
JSON representation
- Host: GitHub
- URL: https://github.com/benslabbert/catalog-server
- Owner: BenSlabbert
- Created: 2023-01-22T11:38:28.000Z (over 3 years ago)
- Default Branch: main
- Last Pushed: 2023-02-22T20:22:21.000Z (over 3 years ago)
- Last Synced: 2025-02-12T15:48:14.865Z (over 1 year ago)
- Language: Java
- Size: 70.3 KB
- Stars: 1
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Catalog
A non-blocking server for catalog crud operations
disable JMX settings in intellij https://stackoverflow.com/a/57434060/4841710
## Load Test
[vegeta](https://github.com/tsenart/vegeta)
The script below produces names like: `f7d43c71`
```shell
od -t x -An /dev/random | \
tr -d " " | \
fold -w 8 | \
jq -ncMR 'while(true; .+1) | {method: "POST", url: "http://localhost:8080/context/api/item", body: {name: range(0;5) | input} | @base64, header: {"Content-Type": ["application/json"]} }' | \
vegeta attack -rate=200/s -lazy -format=json -duration=1s | \
tee results.bin | \
vegeta report
```