benchemarksql 设置长连接
时间: 2023-10-02 15:13:29 浏览: 55
在 BenchMarkSQL 中,可以使用以下命令来设置长连接:
```bash
./sysbench --test=oltp --mysql-host=<host> --mysql-port=<port> --mysql-user=<user> --mysql-password=<password> --mysql-db=<database> --oltp-tables-count=<tables_count> --oltp-table-size=<table_size> --max-requests=<max_requests> --num-threads=<num_threads> --max-time=<max_time> --oltp-test-mode=<test_mode> --oltp-reconnect-mode=exec --oltp-skip-trx=on run
```
其中,`--oltp-reconnect-mode=exec` 参数表示使用长连接模式,`--oltp-skip-trx=on` 参数表示禁用事务,这两个参数一起使用可以实现长连接模式。
阅读全文