about summary refs log tree commit diff stats
path: root/bench/update.sh
blob: d4799bceb216e66810429a9576960bbf2e727bfd (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
#!/usr/bin/env sh

root="$(git rev-parse --show-toplevel)"
cd "$root" || {
    echo "There seems to be no root?" 2>&1
    exit 1
}

db_dir="$(mktemp -d)"
db="$db_dir/db.sqlite"

[ "$1" = "--keep" ] || cargo build --profile=profiling

./target/profiling/yt --db-path "$db" subscriptions add --name 'Kurzgesagt – In a Nutshell - Videos' 'https://www.youtube.com/@kurzgesagt/videos/'
./target/profiling/yt --db-path "$db" update --max-backlog 20 --subscriptions="Kurzgesagt – In a Nutshell - Videos"

hyperfine --show-output --max-runs 5 --min-runs 3 -- "./target/profiling/yt --db-path '$db' update --max-backlog 20 --subscriptions='Kurzgesagt – In a Nutshell - Videos'"

rm "$db"
rm --directory "$db_dir"
# vim: ft=sh