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

https://github.com/fd0/prb

parallel read benchmark, see https://github.com/borgbackup/borg/issues/3500
https://github.com/fd0/prb

Last synced: about 1 year ago
JSON representation

parallel read benchmark, see https://github.com/borgbackup/borg/issues/3500

Awesome Lists containing this project

README

          

Build
=====

```
go build -o prb .
```

cross-compilation:
```
GOOS=freebsd GOARCH=amd64 go build -o prb .
```

Run
===

```
TARGET=/home/user
for i in 1 2 3 4 5 6 7 8 9 10; do
sudo sh -c 'echo 3 > /proc/sys/vm/drop_caches'
./prb --workers $i --output /tmp/benchmarks.csv "$TARGET"
done
```