Created
July 7, 2018 23:26
-
-
Save ryantm/2d15615806f49f153b03e6495af3654b to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/nix/store/jfyhnvp5696s1cjn64fxp5ir072m7h35-sysbench-1.0.15 | |
├── 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_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, 83 files |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment