mirror of
https://github.com/tursodatabase/libsql.git
synced 2025-06-08 07:14:19 +00:00
14 lines
202 B
Markdown
14 lines
202 B
Markdown
# Performance Testing
|
|
|
|
Setup database:
|
|
|
|
```console
|
|
psql -h 127.0.0.1 -p 5432 < pg_bench_schema.sql
|
|
````
|
|
|
|
Run `pgbench`:
|
|
|
|
```console
|
|
pgbench -h 127.0.0.1 -p 5432 -f pg_bench_script.sql -c 10 -t 1000
|
|
```
|