Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save r-ryantm/0828275d3056e9840b082d471839d532 to your computer and use it in GitHub Desktop.
Save r-ryantm/0828275d3056e9840b082d471839d532 to your computer and use it in GitHub Desktop.
/nix/store/c1riyqlxdb1paz88l1rdm70sm2aggchz-sysbench-1.0.20
├── bin
│   └── sysbench
└── share
├── doc
│   └── sysbench
│   └── manual.html
└── sysbench
├── bulk_insert.lua
├── oltp_common.lua
├── oltp_delete.lua
├── oltp_insert.lua
├── oltp_point_select.lua
├── oltp_read_only.lua
├── oltp_read_write.lua
├── oltp_update_index.lua
├── oltp_update_non_index.lua
├── oltp_write_only.lua
├── select_random_points.lua
├── select_random_ranges.lua
└── tests
├── include
│   ├── api_sql_common.sh
│   ├── config.sh
│   ├── drv_common.sh
│   ├── inspect.lua
│   ├── mysql_common.sh
│   ├── oltp_legacy
│   │   ├── bulk_insert.lua
│   │   ├── common.lua
│   │   ├── delete.lua
│   │   ├── insert.lua
│   │   ├── oltp.lua
│   │   ├── oltp_simple.lua
│   │   ├── parallel_prepare.lua
│   │   ├── select.lua
│   │   ├── select_random_points.lua
│   │   ├── select_random_ranges.lua
│   │   ├── update_index.lua
│   │   └── update_non_index.lua
│   ├── pgsql_common.sh
│   ├── script_bulk_insert_common.sh
│   ├── script_oltp_common.sh
│   ├── script_oltp_legacy_common.sh
│   ├── script_select_random_common.sh
│   └── script_select_random_legacy_common.sh
├── t
│   ├── 1st.t
│   ├── api_basic.t
│   ├── api_histogram.t
│   ├── api_legacy_basic.t
│   ├── api_legacy_rand.t
│   ├── api_legacy_sql.t
│   ├── api_rand.t
│   ├── api_reports.t
│   ├── api_sql_mysql.t
│   ├── api_sql_pgsql.t
│   ├── cmd_cleanup.t
│   ├── cmd_help.t
│   ├── cmdline.t
│   ├── cmd_prepare.t
│   ├── cmd_run.t
│   ├── commands.t
│   ├── drivers.t
│   ├── drv_mysql.t
│   ├── drv_pgsql.t
│   ├── help_drv_mysql.t
│   ├── help_drv_pgsql.t
│   ├── opt_help.t
│   ├── opt_histogram.t
│   ├── opt_rate.t
│   ├── opt_report_checkpoints.t
│   ├── opt_report_interval.t
│   ├── opt_version.t
│   ├── script_bulk_insert_mysql.t
│   ├── script_bulk_insert_pgsql.t
│   ├── script_oltp_delete_mysql.t
│   ├── script_oltp_delete_pgsql.t
│   ├── script_oltp_help.t
│   ├── script_oltp_insert_mysql.t
│   ├── script_oltp_insert_pgsql.t
│   ├── script_oltp_point_select_mysql.t
│   ├── script_oltp_point_select_pgsql.t
│   ├── script_oltp_read_write_mysql.t
│   ├── script_oltp_read_write_pgsql.t
│   ├── script_select_random_mysql.t
│   ├── script_select_random_pgsql.t
│   ├── test_cpu.t
│   ├── test_fileio.t
│   ├── test_memory.t
│   ├── test_mutex.t
│   ├── tests.t
│   └── test_threads.t
└── test_run.sh
9 directories, 84 files
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment