# Encryption Throughput Benchmarking ```shell $ cargo run --release -- --help Usage: encryption-throughput [OPTIONS] Options: -t, --threads [default: 1] -b, --batch-size [default: 100] -i, --iterations [default: 10] -r, --read-ratio Percentage of operations that should be reads (0-100) -w, --write-ratio Percentage of operations that should be writes (0-100) --encryption Enable database encryption --cipher Encryption cipher to use (only relevant if --encryption is set) [default: aegis-256] --think Per transaction think time (ms) [default: 0] --timeout Busy timeout in milliseconds [default: 30000] --seed Random seed for reproducible workloads [default: 2167532792061351037] -h, --help Print help ``` ```shell # try these: cargo run --release -- -b 100 -i 25000 --read-ratio 75 cargo run --release -- -b 100 -i 25000 --read-ratio 75 --encryption ```