├── LICENSE ├── array_scans.cc ├── avx2.cc ├── div_u64_u16.cc ├── fast_str ├── Makefile ├── benchmark.cc ├── results.aligned ├── results.ctext_vchar ├── results.match_custom ├── results.unaligned ├── strcasecmp.c └── strspn.c ├── gcc-stm.cc ├── h2_stream_wfq ├── ebtree │ ├── LICENSE │ ├── Makefile │ ├── VERSION │ ├── compiler.h │ ├── doc │ │ ├── design-notes.txt │ │ └── naming.txt │ ├── eb32tree.c │ ├── eb32tree.h │ ├── eb64tree.c │ ├── eb64tree.h │ ├── ebimtree.c │ ├── ebimtree.h │ ├── ebistree.c │ ├── ebistree.h │ ├── ebmbtree.c │ ├── ebmbtree.h │ ├── ebpttree.h │ ├── ebsttree.c │ ├── ebsttree.h │ ├── ebtree.c │ ├── ebtree.h │ ├── examples │ │ ├── myexample.c │ │ ├── reduce.c │ │ └── squidgrep.c │ ├── test32.c │ ├── test64.c │ ├── testebtree.c │ ├── testfunc.c │ ├── testst.c │ ├── testtree.c │ └── testtree64.c ├── fibheap │ ├── fibheap.c │ ├── fibheap.h │ └── gen.sh ├── gen.sh ├── h2o │ ├── gen.sh │ ├── h2o.c │ └── h2o.h ├── heap │ ├── gen.sh │ ├── heap.c │ └── heap.h ├── mybenchmark.cc └── mybenchmark_real.cc ├── htrie ├── Makefile ├── README.md ├── alloc.c ├── alloc.h ├── benchmark.cc ├── common.hh ├── evict.c ├── hashfn.h ├── htrie.c ├── htrie.h ├── kernel_mocks.h ├── lfstack.h ├── lib.cc ├── lib │ └── log.h ├── mapfile.c ├── mapfile.h ├── results ├── table.c ├── table.h ├── tdb.h ├── tdb_internal.h ├── test.cc ├── test_lfstack.cc ├── trie.gdb └── trie_gdb.py ├── http_benchmark ├── Makefile ├── http.h ├── http_benchmark.c ├── http_goto.c ├── http_hsm.c ├── http_ngx.c ├── http_s_tbl.h └── http_tbl.c ├── int_align ├── Makefile ├── alignment.c └── alignment_f.c ├── kstrings ├── Makefile ├── kstring.h ├── memcmp.c ├── memcmp_res.kernel ├── memcmp_res.user_space ├── memcpy.c ├── memcpy_res.kernel ├── memcpy_res.user_space ├── memset.c ├── memset_res.kernel ├── memset_res.user_space └── stdlib.h ├── lockfree_rb_q.cc ├── mariadb ├── collations │ ├── gen_graphs.sh │ ├── latin1 │ │ ├── DESC │ │ ├── QPS.dat │ │ ├── RT_95.dat │ │ ├── RT_avg.dat │ │ ├── collect.pl │ │ ├── config.05 │ │ ├── config.06 │ │ ├── config.sh │ │ ├── lua │ │ │ ├── common.lua │ │ │ └── oltp.lua │ │ ├── my.cnf.01 │ │ ├── my.cnf.02 │ │ ├── my.cnf.03 │ │ ├── my.cnf.04 │ │ ├── my.cnf.05 │ │ ├── my.cnf.06 │ │ ├── res01 │ │ │ ├── cheetah02.err │ │ │ ├── iostat.ro.1.res │ │ │ ├── iostat.ro.128.res │ │ │ ├── iostat.ro.16.res │ │ │ ├── iostat.ro.2.res │ │ │ ├── iostat.ro.256.res │ │ │ ├── iostat.ro.32.res │ │ │ ├── iostat.ro.4.res │ │ │ ├── iostat.ro.64.res │ │ │ ├── iostat.ro.8.res │ │ │ ├── sysbench.ro.long.1.res │ │ │ ├── sysbench.ro.long.128.res │ │ │ ├── sysbench.ro.long.16.res │ │ │ ├── sysbench.ro.long.2.res │ │ │ ├── sysbench.ro.long.256.res │ │ │ ├── sysbench.ro.long.32.res │ │ │ ├── sysbench.ro.long.4.res │ │ │ ├── sysbench.ro.long.64.res │ │ │ ├── sysbench.ro.long.8.res │ │ │ ├── sysbench.ro.short.1.res │ │ │ ├── sysbench.ro.short.128.res │ │ │ ├── sysbench.ro.short.16.res │ │ │ ├── sysbench.ro.short.2.res │ │ │ ├── sysbench.ro.short.256.res │ │ │ ├── sysbench.ro.short.32.res │ │ │ ├── sysbench.ro.short.4.res │ │ │ ├── sysbench.ro.short.64.res │ │ │ └── sysbench.ro.short.8.res │ │ ├── res02 │ │ │ ├── cheetah02.err │ │ │ ├── iostat.ro.1.res │ │ │ ├── iostat.ro.128.res │ │ │ ├── iostat.ro.16.res │ │ │ ├── iostat.ro.2.res │ │ │ ├── iostat.ro.256.res │ │ │ ├── iostat.ro.32.res │ │ │ ├── iostat.ro.4.res │ │ │ ├── iostat.ro.64.res │ │ │ ├── iostat.ro.8.res │ │ │ ├── sysbench.ro.long.1.res │ │ │ ├── sysbench.ro.long.128.res │ │ │ ├── sysbench.ro.long.16.res │ │ │ ├── sysbench.ro.long.2.res │ │ │ ├── sysbench.ro.long.256.res │ │ │ ├── sysbench.ro.long.32.res │ │ │ ├── sysbench.ro.long.4.res │ │ │ ├── sysbench.ro.long.64.res │ │ │ ├── sysbench.ro.long.8.res │ │ │ ├── sysbench.ro.short.1.res │ │ │ ├── sysbench.ro.short.128.res │ │ │ ├── sysbench.ro.short.16.res │ │ │ ├── sysbench.ro.short.2.res │ │ │ ├── sysbench.ro.short.256.res │ │ │ ├── sysbench.ro.short.32.res │ │ │ ├── sysbench.ro.short.4.res │ │ │ ├── sysbench.ro.short.64.res │ │ │ └── sysbench.ro.short.8.res │ │ ├── res03 │ │ │ ├── cheetah02.err │ │ │ ├── iostat.ro.1.res │ │ │ ├── iostat.ro.128.res │ │ │ ├── iostat.ro.16.res │ │ │ ├── iostat.ro.2.res │ │ │ ├── iostat.ro.256.res │ │ │ ├── iostat.ro.32.res │ │ │ ├── iostat.ro.4.res │ │ │ ├── iostat.ro.64.res │ │ │ ├── iostat.ro.8.res │ │ │ ├── sysbench.ro.long.1.res │ │ │ ├── sysbench.ro.long.128.res │ │ │ ├── sysbench.ro.long.16.res │ │ │ ├── sysbench.ro.long.2.res │ │ │ ├── sysbench.ro.long.256.res │ │ │ ├── sysbench.ro.long.32.res │ │ │ ├── sysbench.ro.long.4.res │ │ │ ├── sysbench.ro.long.64.res │ │ │ ├── sysbench.ro.long.8.res │ │ │ ├── sysbench.ro.short.1.res │ │ │ ├── sysbench.ro.short.128.res │ │ │ ├── sysbench.ro.short.16.res │ │ │ ├── sysbench.ro.short.2.res │ │ │ ├── sysbench.ro.short.256.res │ │ │ ├── sysbench.ro.short.32.res │ │ │ ├── sysbench.ro.short.4.res │ │ │ ├── sysbench.ro.short.64.res │ │ │ └── sysbench.ro.short.8.res │ │ ├── res04 │ │ │ ├── cheetah02.err │ │ │ ├── iostat.ro.1.res │ │ │ ├── iostat.ro.128.res │ │ │ ├── iostat.ro.16.res │ │ │ ├── iostat.ro.2.res │ │ │ ├── iostat.ro.256.res │ │ │ ├── iostat.ro.32.res │ │ │ ├── iostat.ro.4.res │ │ │ ├── iostat.ro.64.res │ │ │ ├── iostat.ro.8.res │ │ │ ├── sysbench.ro.long.1.res │ │ │ ├── sysbench.ro.long.128.res │ │ │ ├── sysbench.ro.long.16.res │ │ │ ├── sysbench.ro.long.2.res │ │ │ ├── sysbench.ro.long.256.res │ │ │ ├── sysbench.ro.long.32.res │ │ │ ├── sysbench.ro.long.4.res │ │ │ ├── sysbench.ro.long.64.res │ │ │ ├── sysbench.ro.long.8.res │ │ │ ├── sysbench.ro.short.1.res │ │ │ ├── sysbench.ro.short.128.res │ │ │ ├── sysbench.ro.short.16.res │ │ │ ├── sysbench.ro.short.2.res │ │ │ ├── sysbench.ro.short.256.res │ │ │ ├── sysbench.ro.short.32.res │ │ │ ├── sysbench.ro.short.4.res │ │ │ ├── sysbench.ro.short.64.res │ │ │ └── sysbench.ro.short.8.res │ │ ├── res05 │ │ │ ├── cheetah02.err │ │ │ ├── iostat.ro.1.res │ │ │ ├── iostat.ro.128.res │ │ │ ├── iostat.ro.16.res │ │ │ ├── iostat.ro.2.res │ │ │ ├── iostat.ro.256.res │ │ │ ├── iostat.ro.32.res │ │ │ ├── iostat.ro.4.res │ │ │ ├── iostat.ro.64.res │ │ │ ├── iostat.ro.8.res │ │ │ ├── sysbench.ro.long.1.res │ │ │ ├── sysbench.ro.long.128.res │ │ │ ├── sysbench.ro.long.16.res │ │ │ ├── sysbench.ro.long.2.res │ │ │ ├── sysbench.ro.long.256.res │ │ │ ├── sysbench.ro.long.32.res │ │ │ ├── sysbench.ro.long.4.res │ │ │ ├── sysbench.ro.long.64.res │ │ │ ├── sysbench.ro.long.8.res │ │ │ ├── sysbench.ro.short.1.res │ │ │ ├── sysbench.ro.short.128.res │ │ │ ├── sysbench.ro.short.16.res │ │ │ ├── sysbench.ro.short.2.res │ │ │ ├── sysbench.ro.short.256.res │ │ │ ├── sysbench.ro.short.32.res │ │ │ ├── sysbench.ro.short.4.res │ │ │ ├── sysbench.ro.short.64.res │ │ │ └── sysbench.ro.short.8.res │ │ ├── res06 │ │ │ ├── cheetah02.err │ │ │ ├── iostat.ro.1.res │ │ │ ├── iostat.ro.128.res │ │ │ ├── iostat.ro.16.res │ │ │ ├── iostat.ro.2.res │ │ │ ├── iostat.ro.256.res │ │ │ ├── iostat.ro.32.res │ │ │ ├── iostat.ro.4.res │ │ │ ├── iostat.ro.64.res │ │ │ ├── iostat.ro.8.res │ │ │ ├── sysbench.ro.long.1.res │ │ │ ├── sysbench.ro.long.128.res │ │ │ ├── sysbench.ro.long.16.res │ │ │ ├── sysbench.ro.long.2.res │ │ │ ├── sysbench.ro.long.256.res │ │ │ ├── sysbench.ro.long.32.res │ │ │ ├── sysbench.ro.long.4.res │ │ │ ├── sysbench.ro.long.64.res │ │ │ ├── sysbench.ro.long.8.res │ │ │ ├── sysbench.ro.short.1.res │ │ │ ├── sysbench.ro.short.128.res │ │ │ ├── sysbench.ro.short.16.res │ │ │ ├── sysbench.ro.short.2.res │ │ │ ├── sysbench.ro.short.256.res │ │ │ ├── sysbench.ro.short.32.res │ │ │ ├── sysbench.ro.short.4.res │ │ │ ├── sysbench.ro.short.64.res │ │ │ └── sysbench.ro.short.8.res │ │ ├── res10 │ │ │ ├── iostat.ro.1.res │ │ │ ├── iostat.ro.128.res │ │ │ ├── iostat.ro.16.res │ │ │ ├── iostat.ro.2.res │ │ │ ├── iostat.ro.256.res │ │ │ ├── iostat.ro.32.res │ │ │ ├── iostat.ro.4.res │ │ │ ├── iostat.ro.64.res │ │ │ ├── iostat.ro.8.res │ │ │ ├── sysbench.ro.long.1.res │ │ │ ├── sysbench.ro.long.128.res │ │ │ ├── sysbench.ro.long.16.res │ │ │ ├── sysbench.ro.long.2.res │ │ │ ├── sysbench.ro.long.256.res │ │ │ ├── sysbench.ro.long.32.res │ │ │ ├── sysbench.ro.long.4.res │ │ │ ├── sysbench.ro.long.64.res │ │ │ ├── sysbench.ro.long.8.res │ │ │ ├── sysbench.ro.short.1.res │ │ │ ├── sysbench.ro.short.128.res │ │ │ ├── sysbench.ro.short.16.res │ │ │ ├── sysbench.ro.short.2.res │ │ │ ├── sysbench.ro.short.256.res │ │ │ ├── sysbench.ro.short.32.res │ │ │ ├── sysbench.ro.short.4.res │ │ │ ├── sysbench.ro.short.64.res │ │ │ └── sysbench.ro.short.8.res │ │ ├── res11 │ │ │ ├── iostat.ro.1.res │ │ │ ├── iostat.ro.128.res │ │ │ ├── iostat.ro.16.res │ │ │ ├── iostat.ro.2.res │ │ │ ├── iostat.ro.256.res │ │ │ ├── iostat.ro.32.res │ │ │ ├── iostat.ro.4.res │ │ │ ├── iostat.ro.64.res │ │ │ ├── iostat.ro.8.res │ │ │ ├── sysbench.ro.long.1.res │ │ │ ├── sysbench.ro.long.128.res │ │ │ ├── sysbench.ro.long.16.res │ │ │ ├── sysbench.ro.long.2.res │ │ │ ├── sysbench.ro.long.256.res │ │ │ ├── sysbench.ro.long.32.res │ │ │ ├── sysbench.ro.long.4.res │ │ │ ├── sysbench.ro.long.64.res │ │ │ ├── sysbench.ro.long.8.res │ │ │ ├── sysbench.ro.short.1.res │ │ │ ├── sysbench.ro.short.128.res │ │ │ ├── sysbench.ro.short.16.res │ │ │ ├── sysbench.ro.short.2.res │ │ │ ├── sysbench.ro.short.256.res │ │ │ ├── sysbench.ro.short.32.res │ │ │ ├── sysbench.ro.short.4.res │ │ │ ├── sysbench.ro.short.64.res │ │ │ └── sysbench.ro.short.8.res │ │ ├── run.mysqld │ │ ├── run.sysbench │ │ ├── runme.sh │ │ ├── server.01 │ │ ├── server.02 │ │ ├── server.03 │ │ ├── server.04 │ │ ├── server.05 │ │ └── server.06 │ ├── mariadb.cnf │ ├── mysql.cnf │ ├── utf8-general │ │ ├── DESC │ │ ├── QPS.dat │ │ ├── RT_95.dat │ │ ├── RT_avg.dat │ │ ├── collect.pl │ │ ├── config.05 │ │ ├── config.06 │ │ ├── config.sh │ │ ├── lua │ │ │ ├── common.lua │ │ │ └── oltp.lua │ │ ├── my.cnf.01 │ │ ├── my.cnf.02 │ │ ├── my.cnf.03 │ │ ├── my.cnf.04 │ │ ├── my.cnf.05 │ │ ├── my.cnf.06 │ │ ├── nohup.out │ │ ├── res01 │ │ │ ├── cheetah02.err │ │ │ ├── iostat.ro.1.res │ │ │ ├── iostat.ro.128.res │ │ │ ├── iostat.ro.16.res │ │ │ ├── iostat.ro.2.res │ │ │ ├── iostat.ro.256.res │ │ │ ├── iostat.ro.32.res │ │ │ ├── iostat.ro.4.res │ │ │ ├── iostat.ro.64.res │ │ │ ├── iostat.ro.8.res │ │ │ ├── sysbench.ro.long.1.res │ │ │ ├── sysbench.ro.long.128.res │ │ │ ├── sysbench.ro.long.16.res │ │ │ ├── sysbench.ro.long.2.res │ │ │ ├── sysbench.ro.long.256.res │ │ │ ├── sysbench.ro.long.32.res │ │ │ ├── sysbench.ro.long.4.res │ │ │ ├── sysbench.ro.long.64.res │ │ │ ├── sysbench.ro.long.8.res │ │ │ ├── sysbench.ro.short.1.res │ │ │ ├── sysbench.ro.short.128.res │ │ │ ├── sysbench.ro.short.16.res │ │ │ ├── sysbench.ro.short.2.res │ │ │ ├── sysbench.ro.short.256.res │ │ │ ├── sysbench.ro.short.32.res │ │ │ ├── sysbench.ro.short.4.res │ │ │ ├── sysbench.ro.short.64.res │ │ │ └── sysbench.ro.short.8.res │ │ ├── res02 │ │ │ ├── cheetah02.err │ │ │ ├── iostat.ro.1.res │ │ │ ├── iostat.ro.128.res │ │ │ ├── iostat.ro.16.res │ │ │ ├── iostat.ro.2.res │ │ │ ├── iostat.ro.256.res │ │ │ ├── iostat.ro.32.res │ │ │ ├── iostat.ro.4.res │ │ │ ├── iostat.ro.64.res │ │ │ ├── iostat.ro.8.res │ │ │ ├── sysbench.ro.long.1.res │ │ │ ├── sysbench.ro.long.128.res │ │ │ ├── sysbench.ro.long.16.res │ │ │ ├── sysbench.ro.long.2.res │ │ │ ├── sysbench.ro.long.256.res │ │ │ ├── sysbench.ro.long.32.res │ │ │ ├── sysbench.ro.long.4.res │ │ │ ├── sysbench.ro.long.64.res │ │ │ ├── sysbench.ro.long.8.res │ │ │ ├── sysbench.ro.short.1.res │ │ │ ├── sysbench.ro.short.128.res │ │ │ ├── sysbench.ro.short.16.res │ │ │ ├── sysbench.ro.short.2.res │ │ │ ├── sysbench.ro.short.256.res │ │ │ ├── sysbench.ro.short.32.res │ │ │ ├── sysbench.ro.short.4.res │ │ │ ├── sysbench.ro.short.64.res │ │ │ └── sysbench.ro.short.8.res │ │ ├── res03 │ │ │ ├── cheetah02.err │ │ │ ├── iostat.ro.1.res │ │ │ ├── iostat.ro.128.res │ │ │ ├── iostat.ro.16.res │ │ │ ├── iostat.ro.2.res │ │ │ ├── iostat.ro.256.res │ │ │ ├── iostat.ro.32.res │ │ │ ├── iostat.ro.4.res │ │ │ ├── iostat.ro.64.res │ │ │ ├── iostat.ro.8.res │ │ │ ├── sysbench.ro.long.1.res │ │ │ ├── sysbench.ro.long.128.res │ │ │ ├── sysbench.ro.long.16.res │ │ │ ├── sysbench.ro.long.2.res │ │ │ ├── sysbench.ro.long.256.res │ │ │ ├── sysbench.ro.long.32.res │ │ │ ├── sysbench.ro.long.4.res │ │ │ ├── sysbench.ro.long.64.res │ │ │ ├── sysbench.ro.long.8.res │ │ │ ├── sysbench.ro.short.1.res │ │ │ ├── sysbench.ro.short.128.res │ │ │ ├── sysbench.ro.short.16.res │ │ │ ├── sysbench.ro.short.2.res │ │ │ ├── sysbench.ro.short.256.res │ │ │ ├── sysbench.ro.short.32.res │ │ │ ├── sysbench.ro.short.4.res │ │ │ ├── sysbench.ro.short.64.res │ │ │ └── sysbench.ro.short.8.res │ │ ├── res04 │ │ │ ├── cheetah02.err │ │ │ ├── iostat.ro.1.res │ │ │ ├── iostat.ro.128.res │ │ │ ├── iostat.ro.16.res │ │ │ ├── iostat.ro.2.res │ │ │ ├── iostat.ro.256.res │ │ │ ├── iostat.ro.32.res │ │ │ ├── iostat.ro.4.res │ │ │ ├── iostat.ro.64.res │ │ │ ├── iostat.ro.8.res │ │ │ ├── sysbench.ro.long.1.res │ │ │ ├── sysbench.ro.long.128.res │ │ │ ├── sysbench.ro.long.16.res │ │ │ ├── sysbench.ro.long.2.res │ │ │ ├── sysbench.ro.long.256.res │ │ │ ├── sysbench.ro.long.32.res │ │ │ ├── sysbench.ro.long.4.res │ │ │ ├── sysbench.ro.long.64.res │ │ │ ├── sysbench.ro.long.8.res │ │ │ ├── sysbench.ro.short.1.res │ │ │ ├── sysbench.ro.short.128.res │ │ │ ├── sysbench.ro.short.16.res │ │ │ ├── sysbench.ro.short.2.res │ │ │ ├── sysbench.ro.short.256.res │ │ │ ├── sysbench.ro.short.32.res │ │ │ ├── sysbench.ro.short.4.res │ │ │ ├── sysbench.ro.short.64.res │ │ │ └── sysbench.ro.short.8.res │ │ ├── res05 │ │ │ ├── cheetah02.err │ │ │ ├── iostat.ro.1.res │ │ │ ├── iostat.ro.128.res │ │ │ ├── iostat.ro.16.res │ │ │ ├── iostat.ro.2.res │ │ │ ├── iostat.ro.256.res │ │ │ ├── iostat.ro.32.res │ │ │ ├── iostat.ro.4.res │ │ │ ├── iostat.ro.64.res │ │ │ ├── iostat.ro.8.res │ │ │ ├── sysbench.ro.long.1.res │ │ │ ├── sysbench.ro.long.128.res │ │ │ ├── sysbench.ro.long.16.res │ │ │ ├── sysbench.ro.long.2.res │ │ │ ├── sysbench.ro.long.256.res │ │ │ ├── sysbench.ro.long.32.res │ │ │ ├── sysbench.ro.long.4.res │ │ │ ├── sysbench.ro.long.64.res │ │ │ ├── sysbench.ro.long.8.res │ │ │ ├── sysbench.ro.short.1.res │ │ │ ├── sysbench.ro.short.128.res │ │ │ ├── sysbench.ro.short.16.res │ │ │ ├── sysbench.ro.short.2.res │ │ │ ├── sysbench.ro.short.256.res │ │ │ ├── sysbench.ro.short.32.res │ │ │ ├── sysbench.ro.short.4.res │ │ │ ├── sysbench.ro.short.64.res │ │ │ └── sysbench.ro.short.8.res │ │ ├── res06 │ │ │ ├── cheetah02.err │ │ │ ├── iostat.ro.1.res │ │ │ ├── iostat.ro.128.res │ │ │ ├── iostat.ro.16.res │ │ │ ├── iostat.ro.2.res │ │ │ ├── iostat.ro.256.res │ │ │ ├── iostat.ro.32.res │ │ │ ├── iostat.ro.4.res │ │ │ ├── iostat.ro.64.res │ │ │ ├── iostat.ro.8.res │ │ │ ├── sysbench.ro.long.1.res │ │ │ ├── sysbench.ro.long.128.res │ │ │ ├── sysbench.ro.long.16.res │ │ │ ├── sysbench.ro.long.2.res │ │ │ ├── sysbench.ro.long.256.res │ │ │ ├── sysbench.ro.long.32.res │ │ │ ├── sysbench.ro.long.4.res │ │ │ ├── sysbench.ro.long.64.res │ │ │ ├── sysbench.ro.long.8.res │ │ │ ├── sysbench.ro.short.1.res │ │ │ ├── sysbench.ro.short.128.res │ │ │ ├── sysbench.ro.short.16.res │ │ │ ├── sysbench.ro.short.2.res │ │ │ ├── sysbench.ro.short.256.res │ │ │ ├── sysbench.ro.short.32.res │ │ │ ├── sysbench.ro.short.4.res │ │ │ ├── sysbench.ro.short.64.res │ │ │ └── sysbench.ro.short.8.res │ │ ├── res10 │ │ │ ├── iostat.ro.1.res │ │ │ ├── iostat.ro.128.res │ │ │ ├── iostat.ro.16.res │ │ │ ├── iostat.ro.2.res │ │ │ ├── iostat.ro.256.res │ │ │ ├── iostat.ro.32.res │ │ │ ├── iostat.ro.4.res │ │ │ ├── iostat.ro.64.res │ │ │ ├── iostat.ro.8.res │ │ │ ├── sysbench.ro.long.1.res │ │ │ ├── sysbench.ro.long.128.res │ │ │ ├── sysbench.ro.long.16.res │ │ │ ├── sysbench.ro.long.2.res │ │ │ ├── sysbench.ro.long.256.res │ │ │ ├── sysbench.ro.long.32.res │ │ │ ├── sysbench.ro.long.4.res │ │ │ ├── sysbench.ro.long.64.res │ │ │ ├── sysbench.ro.long.8.res │ │ │ ├── sysbench.ro.short.1.res │ │ │ ├── sysbench.ro.short.128.res │ │ │ ├── sysbench.ro.short.16.res │ │ │ ├── sysbench.ro.short.2.res │ │ │ ├── sysbench.ro.short.256.res │ │ │ ├── sysbench.ro.short.32.res │ │ │ ├── sysbench.ro.short.4.res │ │ │ ├── sysbench.ro.short.64.res │ │ │ └── sysbench.ro.short.8.res │ │ ├── res11 │ │ │ ├── iostat.ro.1.res │ │ │ ├── iostat.ro.128.res │ │ │ ├── iostat.ro.16.res │ │ │ ├── iostat.ro.2.res │ │ │ ├── iostat.ro.256.res │ │ │ ├── iostat.ro.32.res │ │ │ ├── iostat.ro.4.res │ │ │ ├── iostat.ro.64.res │ │ │ ├── iostat.ro.8.res │ │ │ ├── sysbench.ro.long.1.res │ │ │ ├── sysbench.ro.long.128.res │ │ │ ├── sysbench.ro.long.16.res │ │ │ ├── sysbench.ro.long.2.res │ │ │ ├── sysbench.ro.long.256.res │ │ │ ├── sysbench.ro.long.32.res │ │ │ ├── sysbench.ro.long.4.res │ │ │ ├── sysbench.ro.long.64.res │ │ │ ├── sysbench.ro.long.8.res │ │ │ ├── sysbench.ro.short.1.res │ │ │ ├── sysbench.ro.short.128.res │ │ │ ├── sysbench.ro.short.16.res │ │ │ ├── sysbench.ro.short.2.res │ │ │ ├── sysbench.ro.short.256.res │ │ │ ├── sysbench.ro.short.32.res │ │ │ ├── sysbench.ro.short.4.res │ │ │ ├── sysbench.ro.short.64.res │ │ │ └── sysbench.ro.short.8.res │ │ ├── run.mysqld │ │ ├── run.sysbench │ │ ├── runme.sh │ │ ├── server.01 │ │ ├── server.02 │ │ ├── server.03 │ │ ├── server.04 │ │ ├── server.05 │ │ └── server.06 │ ├── utf8-unicode │ │ ├── DESC │ │ ├── QPS.dat │ │ ├── RT_95.dat │ │ ├── RT_avg.dat │ │ ├── collect.pl │ │ ├── config.05 │ │ ├── config.06 │ │ ├── config.sh │ │ ├── lua │ │ │ ├── common.lua │ │ │ └── oltp.lua │ │ ├── my.cnf.01 │ │ ├── my.cnf.02 │ │ ├── my.cnf.03 │ │ ├── my.cnf.04 │ │ ├── my.cnf.05 │ │ ├── my.cnf.06 │ │ ├── res01 │ │ │ ├── cheetah02.err │ │ │ ├── iostat.ro.1.res │ │ │ ├── iostat.ro.128.res │ │ │ ├── iostat.ro.16.res │ │ │ ├── iostat.ro.2.res │ │ │ ├── iostat.ro.256.res │ │ │ ├── iostat.ro.32.res │ │ │ ├── iostat.ro.4.res │ │ │ ├── iostat.ro.64.res │ │ │ ├── iostat.ro.8.res │ │ │ ├── sysbench.ro.long.1.res │ │ │ ├── sysbench.ro.long.128.res │ │ │ ├── sysbench.ro.long.16.res │ │ │ ├── sysbench.ro.long.2.res │ │ │ ├── sysbench.ro.long.256.res │ │ │ ├── sysbench.ro.long.32.res │ │ │ ├── sysbench.ro.long.4.res │ │ │ ├── sysbench.ro.long.64.res │ │ │ ├── sysbench.ro.long.8.res │ │ │ ├── sysbench.ro.short.1.res │ │ │ ├── sysbench.ro.short.128.res │ │ │ ├── sysbench.ro.short.16.res │ │ │ ├── sysbench.ro.short.2.res │ │ │ ├── sysbench.ro.short.256.res │ │ │ ├── sysbench.ro.short.32.res │ │ │ ├── sysbench.ro.short.4.res │ │ │ ├── sysbench.ro.short.64.res │ │ │ └── sysbench.ro.short.8.res │ │ ├── res02 │ │ │ ├── cheetah02.err │ │ │ ├── iostat.ro.1.res │ │ │ ├── iostat.ro.128.res │ │ │ ├── iostat.ro.16.res │ │ │ ├── iostat.ro.2.res │ │ │ ├── iostat.ro.256.res │ │ │ ├── iostat.ro.32.res │ │ │ ├── iostat.ro.4.res │ │ │ ├── iostat.ro.64.res │ │ │ ├── iostat.ro.8.res │ │ │ ├── sysbench.ro.long.1.res │ │ │ ├── sysbench.ro.long.128.res │ │ │ ├── sysbench.ro.long.16.res │ │ │ ├── sysbench.ro.long.2.res │ │ │ ├── sysbench.ro.long.256.res │ │ │ ├── sysbench.ro.long.32.res │ │ │ ├── sysbench.ro.long.4.res │ │ │ ├── sysbench.ro.long.64.res │ │ │ ├── sysbench.ro.long.8.res │ │ │ ├── sysbench.ro.short.1.res │ │ │ ├── sysbench.ro.short.128.res │ │ │ ├── sysbench.ro.short.16.res │ │ │ ├── sysbench.ro.short.2.res │ │ │ ├── sysbench.ro.short.256.res │ │ │ ├── sysbench.ro.short.32.res │ │ │ ├── sysbench.ro.short.4.res │ │ │ ├── sysbench.ro.short.64.res │ │ │ └── sysbench.ro.short.8.res │ │ ├── res03 │ │ │ ├── cheetah02.err │ │ │ ├── iostat.ro.1.res │ │ │ ├── iostat.ro.128.res │ │ │ ├── iostat.ro.16.res │ │ │ ├── iostat.ro.2.res │ │ │ ├── iostat.ro.256.res │ │ │ ├── iostat.ro.32.res │ │ │ ├── iostat.ro.4.res │ │ │ ├── iostat.ro.64.res │ │ │ ├── iostat.ro.8.res │ │ │ ├── sysbench.ro.long.1.res │ │ │ ├── sysbench.ro.long.128.res │ │ │ ├── sysbench.ro.long.16.res │ │ │ ├── sysbench.ro.long.2.res │ │ │ ├── sysbench.ro.long.256.res │ │ │ ├── sysbench.ro.long.32.res │ │ │ ├── sysbench.ro.long.4.res │ │ │ ├── sysbench.ro.long.64.res │ │ │ ├── sysbench.ro.long.8.res │ │ │ ├── sysbench.ro.short.1.res │ │ │ ├── sysbench.ro.short.128.res │ │ │ ├── sysbench.ro.short.16.res │ │ │ ├── sysbench.ro.short.2.res │ │ │ ├── sysbench.ro.short.256.res │ │ │ ├── sysbench.ro.short.32.res │ │ │ ├── sysbench.ro.short.4.res │ │ │ ├── sysbench.ro.short.64.res │ │ │ └── sysbench.ro.short.8.res │ │ ├── res04 │ │ │ ├── cheetah02.err │ │ │ ├── iostat.ro.1.res │ │ │ ├── iostat.ro.128.res │ │ │ ├── iostat.ro.16.res │ │ │ ├── iostat.ro.2.res │ │ │ ├── iostat.ro.256.res │ │ │ ├── iostat.ro.32.res │ │ │ ├── iostat.ro.4.res │ │ │ ├── iostat.ro.64.res │ │ │ ├── iostat.ro.8.res │ │ │ ├── sysbench.ro.long.1.res │ │ │ ├── sysbench.ro.long.128.res │ │ │ ├── sysbench.ro.long.16.res │ │ │ ├── sysbench.ro.long.2.res │ │ │ ├── sysbench.ro.long.256.res │ │ │ ├── sysbench.ro.long.32.res │ │ │ ├── sysbench.ro.long.4.res │ │ │ ├── sysbench.ro.long.64.res │ │ │ ├── sysbench.ro.long.8.res │ │ │ ├── sysbench.ro.short.1.res │ │ │ ├── sysbench.ro.short.128.res │ │ │ ├── sysbench.ro.short.16.res │ │ │ ├── sysbench.ro.short.2.res │ │ │ ├── sysbench.ro.short.256.res │ │ │ ├── sysbench.ro.short.32.res │ │ │ ├── sysbench.ro.short.4.res │ │ │ ├── sysbench.ro.short.64.res │ │ │ └── sysbench.ro.short.8.res │ │ ├── res05 │ │ │ ├── cheetah02.err │ │ │ ├── iostat.ro.1.res │ │ │ ├── iostat.ro.128.res │ │ │ ├── iostat.ro.16.res │ │ │ ├── iostat.ro.2.res │ │ │ ├── iostat.ro.256.res │ │ │ ├── iostat.ro.32.res │ │ │ ├── iostat.ro.4.res │ │ │ ├── iostat.ro.64.res │ │ │ ├── iostat.ro.8.res │ │ │ ├── sysbench.ro.long.1.res │ │ │ ├── sysbench.ro.long.128.res │ │ │ ├── sysbench.ro.long.16.res │ │ │ ├── sysbench.ro.long.2.res │ │ │ ├── sysbench.ro.long.256.res │ │ │ ├── sysbench.ro.long.32.res │ │ │ ├── sysbench.ro.long.4.res │ │ │ ├── sysbench.ro.long.64.res │ │ │ ├── sysbench.ro.long.8.res │ │ │ ├── sysbench.ro.short.1.res │ │ │ ├── sysbench.ro.short.128.res │ │ │ ├── sysbench.ro.short.16.res │ │ │ ├── sysbench.ro.short.2.res │ │ │ ├── sysbench.ro.short.256.res │ │ │ ├── sysbench.ro.short.32.res │ │ │ ├── sysbench.ro.short.4.res │ │ │ ├── sysbench.ro.short.64.res │ │ │ └── sysbench.ro.short.8.res │ │ ├── res06 │ │ │ ├── cheetah02.err │ │ │ ├── iostat.ro.1.res │ │ │ ├── iostat.ro.128.res │ │ │ ├── iostat.ro.16.res │ │ │ ├── iostat.ro.2.res │ │ │ ├── iostat.ro.256.res │ │ │ ├── iostat.ro.32.res │ │ │ ├── iostat.ro.4.res │ │ │ ├── iostat.ro.64.res │ │ │ ├── iostat.ro.8.res │ │ │ ├── sysbench.ro.long.1.res │ │ │ ├── sysbench.ro.long.128.res │ │ │ ├── sysbench.ro.long.16.res │ │ │ ├── sysbench.ro.long.2.res │ │ │ ├── sysbench.ro.long.256.res │ │ │ ├── sysbench.ro.long.32.res │ │ │ ├── sysbench.ro.long.4.res │ │ │ ├── sysbench.ro.long.64.res │ │ │ ├── sysbench.ro.long.8.res │ │ │ ├── sysbench.ro.short.1.res │ │ │ ├── sysbench.ro.short.128.res │ │ │ ├── sysbench.ro.short.16.res │ │ │ ├── sysbench.ro.short.2.res │ │ │ ├── sysbench.ro.short.256.res │ │ │ ├── sysbench.ro.short.32.res │ │ │ ├── sysbench.ro.short.4.res │ │ │ ├── sysbench.ro.short.64.res │ │ │ └── sysbench.ro.short.8.res │ │ ├── res10 │ │ │ ├── iostat.ro.1.res │ │ │ ├── iostat.ro.128.res │ │ │ ├── iostat.ro.16.res │ │ │ ├── iostat.ro.2.res │ │ │ ├── iostat.ro.256.res │ │ │ ├── iostat.ro.32.res │ │ │ ├── iostat.ro.4.res │ │ │ ├── iostat.ro.64.res │ │ │ ├── iostat.ro.8.res │ │ │ ├── sysbench.ro.long.1.res │ │ │ ├── sysbench.ro.long.128.res │ │ │ ├── sysbench.ro.long.16.res │ │ │ ├── sysbench.ro.long.2.res │ │ │ ├── sysbench.ro.long.256.res │ │ │ ├── sysbench.ro.long.32.res │ │ │ ├── sysbench.ro.long.4.res │ │ │ ├── sysbench.ro.long.64.res │ │ │ ├── sysbench.ro.long.8.res │ │ │ ├── sysbench.ro.short.1.res │ │ │ ├── sysbench.ro.short.128.res │ │ │ ├── sysbench.ro.short.16.res │ │ │ ├── sysbench.ro.short.2.res │ │ │ ├── sysbench.ro.short.256.res │ │ │ ├── sysbench.ro.short.32.res │ │ │ ├── sysbench.ro.short.4.res │ │ │ ├── sysbench.ro.short.64.res │ │ │ └── sysbench.ro.short.8.res │ │ ├── res11 │ │ │ ├── iostat.ro.1.res │ │ │ ├── iostat.ro.128.res │ │ │ ├── iostat.ro.16.res │ │ │ ├── iostat.ro.2.res │ │ │ ├── iostat.ro.256.res │ │ │ ├── iostat.ro.32.res │ │ │ ├── iostat.ro.4.res │ │ │ ├── iostat.ro.64.res │ │ │ ├── iostat.ro.8.res │ │ │ ├── sysbench.ro.long.1.res │ │ │ ├── sysbench.ro.long.128.res │ │ │ ├── sysbench.ro.long.16.res │ │ │ ├── sysbench.ro.long.2.res │ │ │ ├── sysbench.ro.long.256.res │ │ │ ├── sysbench.ro.long.32.res │ │ │ ├── sysbench.ro.long.4.res │ │ │ ├── sysbench.ro.long.64.res │ │ │ ├── sysbench.ro.long.8.res │ │ │ ├── sysbench.ro.short.1.res │ │ │ ├── sysbench.ro.short.128.res │ │ │ ├── sysbench.ro.short.16.res │ │ │ ├── sysbench.ro.short.2.res │ │ │ ├── sysbench.ro.short.256.res │ │ │ ├── sysbench.ro.short.32.res │ │ │ ├── sysbench.ro.short.4.res │ │ │ ├── sysbench.ro.short.64.res │ │ │ └── sysbench.ro.short.8.res │ │ ├── run.mysqld │ │ ├── run.sysbench │ │ ├── runme.sh │ │ ├── server.01 │ │ ├── server.02 │ │ ├── server.03 │ │ ├── server.04 │ │ ├── server.05 │ │ └── server.06 │ ├── utf8mb4-general │ │ ├── DESC │ │ ├── QPS.dat │ │ ├── RT_95.dat │ │ ├── RT_avg.dat │ │ ├── collect.pl │ │ ├── config.05 │ │ ├── config.06 │ │ ├── config.sh │ │ ├── lua │ │ │ ├── common.lua │ │ │ └── oltp.lua │ │ ├── my.cnf.01 │ │ ├── my.cnf.02 │ │ ├── my.cnf.03 │ │ ├── my.cnf.04 │ │ ├── my.cnf.05 │ │ ├── my.cnf.06 │ │ ├── nohup.out │ │ ├── res01 │ │ │ ├── cheetah02.err │ │ │ ├── iostat.ro.1.res │ │ │ ├── iostat.ro.128.res │ │ │ ├── iostat.ro.16.res │ │ │ ├── iostat.ro.2.res │ │ │ ├── iostat.ro.256.res │ │ │ ├── iostat.ro.32.res │ │ │ ├── iostat.ro.4.res │ │ │ ├── iostat.ro.64.res │ │ │ ├── iostat.ro.8.res │ │ │ ├── sysbench.ro.long.1.res │ │ │ ├── sysbench.ro.long.128.res │ │ │ ├── sysbench.ro.long.16.res │ │ │ ├── sysbench.ro.long.2.res │ │ │ ├── sysbench.ro.long.256.res │ │ │ ├── sysbench.ro.long.32.res │ │ │ ├── sysbench.ro.long.4.res │ │ │ ├── sysbench.ro.long.64.res │ │ │ ├── sysbench.ro.long.8.res │ │ │ ├── sysbench.ro.short.1.res │ │ │ ├── sysbench.ro.short.128.res │ │ │ ├── sysbench.ro.short.16.res │ │ │ ├── sysbench.ro.short.2.res │ │ │ ├── sysbench.ro.short.256.res │ │ │ ├── sysbench.ro.short.32.res │ │ │ ├── sysbench.ro.short.4.res │ │ │ ├── sysbench.ro.short.64.res │ │ │ └── sysbench.ro.short.8.res │ │ ├── res02 │ │ │ ├── cheetah02.err │ │ │ ├── iostat.ro.1.res │ │ │ ├── iostat.ro.128.res │ │ │ ├── iostat.ro.16.res │ │ │ ├── iostat.ro.2.res │ │ │ ├── iostat.ro.256.res │ │ │ ├── iostat.ro.32.res │ │ │ ├── iostat.ro.4.res │ │ │ ├── iostat.ro.64.res │ │ │ ├── iostat.ro.8.res │ │ │ ├── sysbench.ro.long.1.res │ │ │ ├── sysbench.ro.long.128.res │ │ │ ├── sysbench.ro.long.16.res │ │ │ ├── sysbench.ro.long.2.res │ │ │ ├── sysbench.ro.long.256.res │ │ │ ├── sysbench.ro.long.32.res │ │ │ ├── sysbench.ro.long.4.res │ │ │ ├── sysbench.ro.long.64.res │ │ │ ├── sysbench.ro.long.8.res │ │ │ ├── sysbench.ro.short.1.res │ │ │ ├── sysbench.ro.short.128.res │ │ │ ├── sysbench.ro.short.16.res │ │ │ ├── sysbench.ro.short.2.res │ │ │ ├── sysbench.ro.short.256.res │ │ │ ├── sysbench.ro.short.32.res │ │ │ ├── sysbench.ro.short.4.res │ │ │ ├── sysbench.ro.short.64.res │ │ │ └── sysbench.ro.short.8.res │ │ ├── res03 │ │ │ ├── cheetah02.err │ │ │ ├── iostat.ro.1.res │ │ │ ├── iostat.ro.128.res │ │ │ ├── iostat.ro.16.res │ │ │ ├── iostat.ro.2.res │ │ │ ├── iostat.ro.256.res │ │ │ ├── iostat.ro.32.res │ │ │ ├── iostat.ro.4.res │ │ │ ├── iostat.ro.64.res │ │ │ ├── iostat.ro.8.res │ │ │ ├── sysbench.ro.long.1.res │ │ │ ├── sysbench.ro.long.128.res │ │ │ ├── sysbench.ro.long.16.res │ │ │ ├── sysbench.ro.long.2.res │ │ │ ├── sysbench.ro.long.256.res │ │ │ ├── sysbench.ro.long.32.res │ │ │ ├── sysbench.ro.long.4.res │ │ │ ├── sysbench.ro.long.64.res │ │ │ ├── sysbench.ro.long.8.res │ │ │ ├── sysbench.ro.short.1.res │ │ │ ├── sysbench.ro.short.128.res │ │ │ ├── sysbench.ro.short.16.res │ │ │ ├── sysbench.ro.short.2.res │ │ │ ├── sysbench.ro.short.256.res │ │ │ ├── sysbench.ro.short.32.res │ │ │ ├── sysbench.ro.short.4.res │ │ │ ├── sysbench.ro.short.64.res │ │ │ └── sysbench.ro.short.8.res │ │ ├── res04 │ │ │ ├── cheetah02.err │ │ │ ├── iostat.ro.1.res │ │ │ ├── iostat.ro.128.res │ │ │ ├── iostat.ro.16.res │ │ │ ├── iostat.ro.2.res │ │ │ ├── iostat.ro.256.res │ │ │ ├── iostat.ro.32.res │ │ │ ├── iostat.ro.4.res │ │ │ ├── iostat.ro.64.res │ │ │ ├── iostat.ro.8.res │ │ │ ├── sysbench.ro.long.1.res │ │ │ ├── sysbench.ro.long.128.res │ │ │ ├── sysbench.ro.long.16.res │ │ │ ├── sysbench.ro.long.2.res │ │ │ ├── sysbench.ro.long.256.res │ │ │ ├── sysbench.ro.long.32.res │ │ │ ├── sysbench.ro.long.4.res │ │ │ ├── sysbench.ro.long.64.res │ │ │ ├── sysbench.ro.long.8.res │ │ │ ├── sysbench.ro.short.1.res │ │ │ ├── sysbench.ro.short.128.res │ │ │ ├── sysbench.ro.short.16.res │ │ │ ├── sysbench.ro.short.2.res │ │ │ ├── sysbench.ro.short.256.res │ │ │ ├── sysbench.ro.short.32.res │ │ │ ├── sysbench.ro.short.4.res │ │ │ ├── sysbench.ro.short.64.res │ │ │ └── sysbench.ro.short.8.res │ │ ├── res05 │ │ │ ├── cheetah02.err │ │ │ ├── iostat.ro.1.res │ │ │ ├── iostat.ro.128.res │ │ │ ├── iostat.ro.16.res │ │ │ ├── iostat.ro.2.res │ │ │ ├── iostat.ro.256.res │ │ │ ├── iostat.ro.32.res │ │ │ ├── iostat.ro.4.res │ │ │ ├── iostat.ro.64.res │ │ │ ├── iostat.ro.8.res │ │ │ ├── sysbench.ro.long.1.res │ │ │ ├── sysbench.ro.long.128.res │ │ │ ├── sysbench.ro.long.16.res │ │ │ ├── sysbench.ro.long.2.res │ │ │ ├── sysbench.ro.long.256.res │ │ │ ├── sysbench.ro.long.32.res │ │ │ ├── sysbench.ro.long.4.res │ │ │ ├── sysbench.ro.long.64.res │ │ │ ├── sysbench.ro.long.8.res │ │ │ ├── sysbench.ro.short.1.res │ │ │ ├── sysbench.ro.short.128.res │ │ │ ├── sysbench.ro.short.16.res │ │ │ ├── sysbench.ro.short.2.res │ │ │ ├── sysbench.ro.short.256.res │ │ │ ├── sysbench.ro.short.32.res │ │ │ ├── sysbench.ro.short.4.res │ │ │ ├── sysbench.ro.short.64.res │ │ │ └── sysbench.ro.short.8.res │ │ ├── res06 │ │ │ ├── cheetah02.err │ │ │ ├── iostat.ro.1.res │ │ │ ├── iostat.ro.128.res │ │ │ ├── iostat.ro.16.res │ │ │ ├── iostat.ro.2.res │ │ │ ├── iostat.ro.256.res │ │ │ ├── iostat.ro.32.res │ │ │ ├── iostat.ro.4.res │ │ │ ├── iostat.ro.64.res │ │ │ ├── iostat.ro.8.res │ │ │ ├── sysbench.ro.long.1.res │ │ │ ├── sysbench.ro.long.128.res │ │ │ ├── sysbench.ro.long.16.res │ │ │ ├── sysbench.ro.long.2.res │ │ │ ├── sysbench.ro.long.256.res │ │ │ ├── sysbench.ro.long.32.res │ │ │ ├── sysbench.ro.long.4.res │ │ │ ├── sysbench.ro.long.64.res │ │ │ ├── sysbench.ro.long.8.res │ │ │ ├── sysbench.ro.short.1.res │ │ │ ├── sysbench.ro.short.128.res │ │ │ ├── sysbench.ro.short.16.res │ │ │ ├── sysbench.ro.short.2.res │ │ │ ├── sysbench.ro.short.256.res │ │ │ ├── sysbench.ro.short.32.res │ │ │ ├── sysbench.ro.short.4.res │ │ │ ├── sysbench.ro.short.64.res │ │ │ └── sysbench.ro.short.8.res │ │ ├── res10 │ │ │ ├── iostat.ro.1.res │ │ │ ├── iostat.ro.128.res │ │ │ ├── iostat.ro.16.res │ │ │ ├── iostat.ro.2.res │ │ │ ├── iostat.ro.256.res │ │ │ ├── iostat.ro.32.res │ │ │ ├── iostat.ro.4.res │ │ │ ├── iostat.ro.64.res │ │ │ ├── iostat.ro.8.res │ │ │ ├── sysbench.ro.long.1.res │ │ │ ├── sysbench.ro.long.128.res │ │ │ ├── sysbench.ro.long.16.res │ │ │ ├── sysbench.ro.long.2.res │ │ │ ├── sysbench.ro.long.256.res │ │ │ ├── sysbench.ro.long.32.res │ │ │ ├── sysbench.ro.long.4.res │ │ │ ├── sysbench.ro.long.64.res │ │ │ ├── sysbench.ro.long.8.res │ │ │ ├── sysbench.ro.short.1.res │ │ │ ├── sysbench.ro.short.128.res │ │ │ ├── sysbench.ro.short.16.res │ │ │ ├── sysbench.ro.short.2.res │ │ │ ├── sysbench.ro.short.256.res │ │ │ ├── sysbench.ro.short.32.res │ │ │ ├── sysbench.ro.short.4.res │ │ │ ├── sysbench.ro.short.64.res │ │ │ └── sysbench.ro.short.8.res │ │ ├── res11 │ │ │ ├── iostat.ro.1.res │ │ │ ├── iostat.ro.128.res │ │ │ ├── iostat.ro.16.res │ │ │ ├── iostat.ro.2.res │ │ │ ├── iostat.ro.256.res │ │ │ ├── iostat.ro.32.res │ │ │ ├── iostat.ro.4.res │ │ │ ├── iostat.ro.64.res │ │ │ ├── iostat.ro.8.res │ │ │ ├── sysbench.ro.long.1.res │ │ │ ├── sysbench.ro.long.128.res │ │ │ ├── sysbench.ro.long.16.res │ │ │ ├── sysbench.ro.long.2.res │ │ │ ├── sysbench.ro.long.256.res │ │ │ ├── sysbench.ro.long.32.res │ │ │ ├── sysbench.ro.long.4.res │ │ │ ├── sysbench.ro.long.64.res │ │ │ ├── sysbench.ro.long.8.res │ │ │ ├── sysbench.ro.short.1.res │ │ │ ├── sysbench.ro.short.128.res │ │ │ ├── sysbench.ro.short.16.res │ │ │ ├── sysbench.ro.short.2.res │ │ │ ├── sysbench.ro.short.256.res │ │ │ ├── sysbench.ro.short.32.res │ │ │ ├── sysbench.ro.short.4.res │ │ │ ├── sysbench.ro.short.64.res │ │ │ └── sysbench.ro.short.8.res │ │ ├── run.mysqld │ │ ├── run.sysbench │ │ ├── runme.sh │ │ ├── server.01 │ │ ├── server.02 │ │ ├── server.03 │ │ ├── server.04 │ │ ├── server.05 │ │ └── server.06 │ └── utf8mb4-unicode │ │ ├── DESC │ │ ├── QPS.dat │ │ ├── RT_95.dat │ │ ├── RT_avg.dat │ │ ├── collect.pl │ │ ├── config.05 │ │ ├── config.06 │ │ ├── config.sh │ │ ├── lua │ │ ├── common.lua │ │ └── oltp.lua │ │ ├── my.cnf.01 │ │ ├── my.cnf.02 │ │ ├── my.cnf.03 │ │ ├── my.cnf.04 │ │ ├── my.cnf.05 │ │ ├── my.cnf.06 │ │ ├── res01 │ │ ├── cheetah02.err │ │ ├── iostat.ro.1.res │ │ ├── iostat.ro.128.res │ │ ├── iostat.ro.16.res │ │ ├── iostat.ro.2.res │ │ ├── iostat.ro.256.res │ │ ├── iostat.ro.32.res │ │ ├── iostat.ro.4.res │ │ ├── iostat.ro.64.res │ │ ├── iostat.ro.8.res │ │ ├── sysbench.ro.long.1.res │ │ ├── sysbench.ro.long.128.res │ │ ├── sysbench.ro.long.16.res │ │ ├── sysbench.ro.long.2.res │ │ ├── sysbench.ro.long.256.res │ │ ├── sysbench.ro.long.32.res │ │ ├── sysbench.ro.long.4.res │ │ ├── sysbench.ro.long.64.res │ │ ├── sysbench.ro.long.8.res │ │ ├── sysbench.ro.short.1.res │ │ ├── sysbench.ro.short.128.res │ │ ├── sysbench.ro.short.16.res │ │ ├── sysbench.ro.short.2.res │ │ ├── sysbench.ro.short.256.res │ │ ├── sysbench.ro.short.32.res │ │ ├── sysbench.ro.short.4.res │ │ ├── sysbench.ro.short.64.res │ │ └── sysbench.ro.short.8.res │ │ ├── res02 │ │ ├── cheetah02.err │ │ ├── iostat.ro.1.res │ │ ├── iostat.ro.128.res │ │ ├── iostat.ro.16.res │ │ ├── iostat.ro.2.res │ │ ├── iostat.ro.256.res │ │ ├── iostat.ro.32.res │ │ ├── iostat.ro.4.res │ │ ├── iostat.ro.64.res │ │ ├── iostat.ro.8.res │ │ ├── sysbench.ro.long.1.res │ │ ├── sysbench.ro.long.128.res │ │ ├── sysbench.ro.long.16.res │ │ ├── sysbench.ro.long.2.res │ │ ├── sysbench.ro.long.256.res │ │ ├── sysbench.ro.long.32.res │ │ ├── sysbench.ro.long.4.res │ │ ├── sysbench.ro.long.64.res │ │ ├── sysbench.ro.long.8.res │ │ ├── sysbench.ro.short.1.res │ │ ├── sysbench.ro.short.128.res │ │ ├── sysbench.ro.short.16.res │ │ ├── sysbench.ro.short.2.res │ │ ├── sysbench.ro.short.256.res │ │ ├── sysbench.ro.short.32.res │ │ ├── sysbench.ro.short.4.res │ │ ├── sysbench.ro.short.64.res │ │ └── sysbench.ro.short.8.res │ │ ├── res03 │ │ ├── cheetah02.err │ │ ├── iostat.ro.1.res │ │ ├── iostat.ro.128.res │ │ ├── iostat.ro.16.res │ │ ├── iostat.ro.2.res │ │ ├── iostat.ro.256.res │ │ ├── iostat.ro.32.res │ │ ├── iostat.ro.4.res │ │ ├── iostat.ro.64.res │ │ ├── iostat.ro.8.res │ │ ├── sysbench.ro.long.1.res │ │ ├── sysbench.ro.long.128.res │ │ ├── sysbench.ro.long.16.res │ │ ├── sysbench.ro.long.2.res │ │ ├── sysbench.ro.long.256.res │ │ ├── sysbench.ro.long.32.res │ │ ├── sysbench.ro.long.4.res │ │ ├── sysbench.ro.long.64.res │ │ ├── sysbench.ro.long.8.res │ │ ├── sysbench.ro.short.1.res │ │ ├── sysbench.ro.short.128.res │ │ ├── sysbench.ro.short.16.res │ │ ├── sysbench.ro.short.2.res │ │ ├── sysbench.ro.short.256.res │ │ ├── sysbench.ro.short.32.res │ │ ├── sysbench.ro.short.4.res │ │ ├── sysbench.ro.short.64.res │ │ └── sysbench.ro.short.8.res │ │ ├── res04 │ │ ├── cheetah02.err │ │ ├── iostat.ro.1.res │ │ ├── iostat.ro.128.res │ │ ├── iostat.ro.16.res │ │ ├── iostat.ro.2.res │ │ ├── iostat.ro.256.res │ │ ├── iostat.ro.32.res │ │ ├── iostat.ro.4.res │ │ ├── iostat.ro.64.res │ │ ├── iostat.ro.8.res │ │ ├── sysbench.ro.long.1.res │ │ ├── sysbench.ro.long.128.res │ │ ├── sysbench.ro.long.16.res │ │ ├── sysbench.ro.long.2.res │ │ ├── sysbench.ro.long.256.res │ │ ├── sysbench.ro.long.32.res │ │ ├── sysbench.ro.long.4.res │ │ ├── sysbench.ro.long.64.res │ │ ├── sysbench.ro.long.8.res │ │ ├── sysbench.ro.short.1.res │ │ ├── sysbench.ro.short.128.res │ │ ├── sysbench.ro.short.16.res │ │ ├── sysbench.ro.short.2.res │ │ ├── sysbench.ro.short.256.res │ │ ├── sysbench.ro.short.32.res │ │ ├── sysbench.ro.short.4.res │ │ ├── sysbench.ro.short.64.res │ │ └── sysbench.ro.short.8.res │ │ ├── res05 │ │ ├── cheetah02.err │ │ ├── iostat.ro.1.res │ │ ├── iostat.ro.128.res │ │ ├── iostat.ro.16.res │ │ ├── iostat.ro.2.res │ │ ├── iostat.ro.256.res │ │ ├── iostat.ro.32.res │ │ ├── iostat.ro.4.res │ │ ├── iostat.ro.64.res │ │ ├── iostat.ro.8.res │ │ ├── sysbench.ro.long.1.res │ │ ├── sysbench.ro.long.128.res │ │ ├── sysbench.ro.long.16.res │ │ ├── sysbench.ro.long.2.res │ │ ├── sysbench.ro.long.256.res │ │ ├── sysbench.ro.long.32.res │ │ ├── sysbench.ro.long.4.res │ │ ├── sysbench.ro.long.64.res │ │ ├── sysbench.ro.long.8.res │ │ ├── sysbench.ro.short.1.res │ │ ├── sysbench.ro.short.128.res │ │ ├── sysbench.ro.short.16.res │ │ ├── sysbench.ro.short.2.res │ │ ├── sysbench.ro.short.256.res │ │ ├── sysbench.ro.short.32.res │ │ ├── sysbench.ro.short.4.res │ │ ├── sysbench.ro.short.64.res │ │ └── sysbench.ro.short.8.res │ │ ├── res06 │ │ ├── cheetah02.err │ │ ├── iostat.ro.1.res │ │ ├── iostat.ro.128.res │ │ ├── iostat.ro.16.res │ │ ├── iostat.ro.2.res │ │ ├── iostat.ro.256.res │ │ ├── iostat.ro.32.res │ │ ├── iostat.ro.4.res │ │ ├── iostat.ro.64.res │ │ ├── iostat.ro.8.res │ │ ├── sysbench.ro.long.1.res │ │ ├── sysbench.ro.long.128.res │ │ ├── sysbench.ro.long.16.res │ │ ├── sysbench.ro.long.2.res │ │ ├── sysbench.ro.long.256.res │ │ ├── sysbench.ro.long.32.res │ │ ├── sysbench.ro.long.4.res │ │ ├── sysbench.ro.long.64.res │ │ ├── sysbench.ro.long.8.res │ │ ├── sysbench.ro.short.1.res │ │ ├── sysbench.ro.short.128.res │ │ ├── sysbench.ro.short.16.res │ │ ├── sysbench.ro.short.2.res │ │ ├── sysbench.ro.short.256.res │ │ ├── sysbench.ro.short.32.res │ │ ├── sysbench.ro.short.4.res │ │ ├── sysbench.ro.short.64.res │ │ └── sysbench.ro.short.8.res │ │ ├── res10 │ │ ├── iostat.ro.1.res │ │ ├── iostat.ro.128.res │ │ ├── iostat.ro.16.res │ │ ├── iostat.ro.2.res │ │ ├── iostat.ro.256.res │ │ ├── iostat.ro.32.res │ │ ├── iostat.ro.4.res │ │ ├── iostat.ro.64.res │ │ ├── iostat.ro.8.res │ │ ├── sysbench.ro.long.1.res │ │ ├── sysbench.ro.long.128.res │ │ ├── sysbench.ro.long.16.res │ │ ├── sysbench.ro.long.2.res │ │ ├── sysbench.ro.long.256.res │ │ ├── sysbench.ro.long.32.res │ │ ├── sysbench.ro.long.4.res │ │ ├── sysbench.ro.long.64.res │ │ ├── sysbench.ro.long.8.res │ │ ├── sysbench.ro.short.1.res │ │ ├── sysbench.ro.short.128.res │ │ ├── sysbench.ro.short.16.res │ │ ├── sysbench.ro.short.2.res │ │ ├── sysbench.ro.short.256.res │ │ ├── sysbench.ro.short.32.res │ │ ├── sysbench.ro.short.4.res │ │ ├── sysbench.ro.short.64.res │ │ └── sysbench.ro.short.8.res │ │ ├── res11 │ │ ├── iostat.ro.1.res │ │ ├── iostat.ro.128.res │ │ ├── iostat.ro.16.res │ │ ├── iostat.ro.2.res │ │ ├── iostat.ro.256.res │ │ ├── iostat.ro.32.res │ │ ├── iostat.ro.4.res │ │ ├── iostat.ro.64.res │ │ ├── iostat.ro.8.res │ │ ├── sysbench.ro.long.1.res │ │ ├── sysbench.ro.long.128.res │ │ ├── sysbench.ro.long.16.res │ │ ├── sysbench.ro.long.2.res │ │ ├── sysbench.ro.long.256.res │ │ ├── sysbench.ro.long.32.res │ │ ├── sysbench.ro.long.4.res │ │ ├── sysbench.ro.long.64.res │ │ ├── sysbench.ro.long.8.res │ │ ├── sysbench.ro.short.1.res │ │ ├── sysbench.ro.short.128.res │ │ ├── sysbench.ro.short.16.res │ │ ├── sysbench.ro.short.2.res │ │ ├── sysbench.ro.short.256.res │ │ ├── sysbench.ro.short.32.res │ │ ├── sysbench.ro.short.4.res │ │ ├── sysbench.ro.short.64.res │ │ └── sysbench.ro.short.8.res │ │ ├── run.mysqld │ │ ├── run.sysbench │ │ ├── runme.sh │ │ ├── server.01 │ │ ├── server.02 │ │ ├── server.03 │ │ ├── server.04 │ │ ├── server.05 │ │ └── server.06 └── collations2 │ ├── .DESC.swp │ ├── DESC │ ├── DESC.WL │ ├── QPS.dat │ ├── RT_95.dat │ ├── RT_avg.dat │ ├── collations.pdf │ ├── collect.pl │ ├── config.01 │ ├── config.02 │ ├── config.03 │ ├── config.04 │ ├── config.05 │ ├── config.06 │ ├── config.07 │ ├── config.10 │ ├── config.11 │ ├── config.12 │ ├── config.13 │ ├── config.14 │ ├── config.15 │ ├── config.16 │ ├── config.20 │ ├── config.21 │ ├── config.22 │ ├── config.23 │ ├── config.24 │ ├── config.25 │ ├── config.26 │ ├── config.sh │ ├── gen_graph.sh │ ├── my.cnf.01 │ ├── my.cnf.02 │ ├── my.cnf.03 │ ├── my.cnf.04 │ ├── my.cnf.05 │ ├── my.cnf.06 │ ├── my.cnf.07 │ ├── my.cnf.10 │ ├── my.cnf.11 │ ├── my.cnf.12 │ ├── my.cnf.13 │ ├── my.cnf.14 │ ├── my.cnf.15 │ ├── my.cnf.16 │ ├── my.cnf.20 │ ├── my.cnf.21 │ ├── my.cnf.22 │ ├── my.cnf.23 │ ├── my.cnf.24 │ ├── my.cnf.25 │ ├── my.cnf.26 │ ├── oltp_common.lua │ ├── oltp_range.lua │ ├── res01 │ ├── iostat.range.1.txt │ ├── iostat.range.128.txt │ ├── iostat.range.16.txt │ ├── iostat.range.256.txt │ ├── iostat.range.32.txt │ ├── iostat.range.64.txt │ ├── iostat.range.8.txt │ ├── load.sysbench.txt │ ├── range.1.res │ ├── range.128.res │ ├── range.16.res │ ├── range.256.res │ ├── range.32.res │ ├── range.64.res │ ├── range.8.res │ ├── show.table.txt │ └── yang04h.colo.sproutsys.com.err │ ├── res02 │ ├── iostat.range.1.txt │ ├── iostat.range.128.txt │ ├── iostat.range.16.txt │ ├── iostat.range.256.txt │ ├── iostat.range.32.txt │ ├── iostat.range.64.txt │ ├── iostat.range.8.txt │ ├── load.sysbench.txt │ ├── range.1.res │ ├── range.128.res │ ├── range.16.res │ ├── range.256.res │ ├── range.32.res │ ├── range.64.res │ ├── range.8.res │ ├── show.table.txt │ └── yang04h.colo.sproutsys.com.err │ ├── res03 │ ├── iostat.range.1.txt │ ├── iostat.range.128.txt │ ├── iostat.range.16.txt │ ├── iostat.range.256.txt │ ├── iostat.range.32.txt │ ├── iostat.range.64.txt │ ├── iostat.range.8.txt │ ├── load.sysbench.txt │ ├── range.1.res │ ├── range.128.res │ ├── range.16.res │ ├── range.256.res │ ├── range.32.res │ ├── range.64.res │ ├── range.8.res │ ├── show.table.txt │ └── yang04h.colo.sproutsys.com.err │ ├── res04 │ ├── iostat.range.1.txt │ ├── iostat.range.128.txt │ ├── iostat.range.16.txt │ ├── iostat.range.256.txt │ ├── iostat.range.32.txt │ ├── iostat.range.64.txt │ ├── iostat.range.8.txt │ ├── load.sysbench.txt │ ├── range.1.res │ ├── range.128.res │ ├── range.16.res │ ├── range.256.res │ ├── range.32.res │ ├── range.64.res │ ├── range.8.res │ ├── show.table.txt │ └── yang04h.colo.sproutsys.com.err │ ├── res05 │ ├── iostat.range.1.txt │ ├── iostat.range.128.txt │ ├── iostat.range.16.txt │ ├── iostat.range.256.txt │ ├── iostat.range.32.txt │ ├── iostat.range.64.txt │ ├── iostat.range.8.txt │ ├── load.sysbench.txt │ ├── range.1.res │ ├── range.128.res │ ├── range.16.res │ ├── range.256.res │ ├── range.32.res │ ├── range.64.res │ ├── range.8.res │ ├── show.table.txt │ └── yang04h.colo.sproutsys.com.err │ ├── res06 │ ├── iostat.range.1.txt │ ├── iostat.range.128.txt │ ├── iostat.range.16.txt │ ├── iostat.range.256.txt │ ├── iostat.range.32.txt │ ├── iostat.range.64.txt │ ├── iostat.range.8.txt │ ├── load.sysbench.txt │ ├── range.1.res │ ├── range.128.res │ ├── range.16.res │ ├── range.256.res │ ├── range.32.res │ ├── range.64.res │ ├── range.8.res │ ├── show.table.txt │ └── yang04h.colo.sproutsys.com.err │ ├── res07 │ ├── iostat.range.1.txt │ ├── iostat.range.128.txt │ ├── iostat.range.16.txt │ ├── iostat.range.256.txt │ ├── iostat.range.32.txt │ ├── iostat.range.64.txt │ ├── iostat.range.8.txt │ ├── load.sysbench.txt │ ├── range.1.res │ ├── range.128.res │ ├── range.16.res │ ├── range.256.res │ ├── range.32.res │ ├── range.64.res │ ├── range.8.res │ ├── show.table.txt │ └── yang04h.colo.sproutsys.com.err │ ├── res10 │ ├── iostat.range.1.txt │ ├── iostat.range.128.txt │ ├── iostat.range.16.txt │ ├── iostat.range.256.txt │ ├── iostat.range.32.txt │ ├── iostat.range.64.txt │ ├── iostat.range.8.txt │ ├── load.sysbench.txt │ ├── range.1.res │ ├── range.128.res │ ├── range.16.res │ ├── range.256.res │ ├── range.32.res │ ├── range.64.res │ ├── range.8.res │ ├── show.table.txt │ └── yang04h.colo.sproutsys.com.err │ ├── res11 │ ├── iostat.range.1.txt │ ├── iostat.range.128.txt │ ├── iostat.range.16.txt │ ├── iostat.range.256.txt │ ├── iostat.range.32.txt │ ├── iostat.range.64.txt │ ├── iostat.range.8.txt │ ├── load.sysbench.txt │ ├── range.1.res │ ├── range.128.res │ ├── range.16.res │ ├── range.256.res │ ├── range.32.res │ ├── range.64.res │ ├── range.8.res │ ├── show.table.txt │ └── yang04h.colo.sproutsys.com.err │ ├── res12 │ ├── iostat.range.1.txt │ ├── iostat.range.128.txt │ ├── iostat.range.16.txt │ ├── iostat.range.256.txt │ ├── iostat.range.32.txt │ ├── iostat.range.64.txt │ ├── iostat.range.8.txt │ ├── load.sysbench.txt │ ├── range.1.res │ ├── range.128.res │ ├── range.16.res │ ├── range.256.res │ ├── range.32.res │ ├── range.64.res │ ├── range.8.res │ ├── show.table.txt │ └── yang04h.colo.sproutsys.com.err │ ├── res13 │ ├── iostat.range.1.txt │ ├── iostat.range.128.txt │ ├── iostat.range.16.txt │ ├── iostat.range.256.txt │ ├── iostat.range.32.txt │ ├── iostat.range.64.txt │ ├── iostat.range.8.txt │ ├── load.sysbench.txt │ ├── range.1.res │ ├── range.128.res │ ├── range.16.res │ ├── range.256.res │ ├── range.32.res │ ├── range.64.res │ ├── range.8.res │ ├── show.table.txt │ └── yang04h.colo.sproutsys.com.err │ ├── res14 │ ├── iostat.range.1.txt │ ├── iostat.range.128.txt │ ├── iostat.range.16.txt │ ├── iostat.range.256.txt │ ├── iostat.range.32.txt │ ├── iostat.range.64.txt │ ├── iostat.range.8.txt │ ├── load.sysbench.txt │ ├── range.1.res │ ├── range.128.res │ ├── range.16.res │ ├── range.256.res │ ├── range.32.res │ ├── range.64.res │ ├── range.8.res │ ├── show.table.txt │ └── yang04h.colo.sproutsys.com.err │ ├── res15 │ ├── iostat.range.1.txt │ ├── iostat.range.128.txt │ ├── iostat.range.16.txt │ ├── iostat.range.256.txt │ ├── iostat.range.32.txt │ ├── iostat.range.64.txt │ ├── iostat.range.8.txt │ ├── load.sysbench.txt │ ├── range.1.res │ ├── range.128.res │ ├── range.16.res │ ├── range.256.res │ ├── range.32.res │ ├── range.64.res │ ├── range.8.res │ ├── show.table.txt │ └── yang04h.colo.sproutsys.com.err │ ├── res16 │ ├── iostat.range.1.txt │ ├── iostat.range.128.txt │ ├── iostat.range.16.txt │ ├── iostat.range.256.txt │ ├── iostat.range.32.txt │ ├── iostat.range.64.txt │ ├── iostat.range.8.txt │ ├── load.sysbench.txt │ ├── range.1.res │ ├── range.128.res │ ├── range.16.res │ ├── range.256.res │ ├── range.32.res │ ├── range.64.res │ ├── range.8.res │ ├── show.table.txt │ └── yang04h.colo.sproutsys.com.err │ ├── res20 │ ├── iostat.range.1.txt │ ├── iostat.range.128.txt │ ├── iostat.range.16.txt │ ├── iostat.range.256.txt │ ├── iostat.range.32.txt │ ├── iostat.range.64.txt │ ├── iostat.range.8.txt │ ├── load.sysbench.txt │ ├── range.1.res │ ├── range.128.res │ ├── range.16.res │ ├── range.256.res │ ├── range.32.res │ ├── range.64.res │ ├── range.8.res │ ├── show.table.txt │ └── yang04h.colo.sproutsys.com.err │ ├── res21 │ ├── iostat.range.1.txt │ ├── iostat.range.128.txt │ ├── iostat.range.16.txt │ ├── iostat.range.256.txt │ ├── iostat.range.32.txt │ ├── iostat.range.64.txt │ ├── iostat.range.8.txt │ ├── load.sysbench.txt │ ├── range.1.res │ ├── range.128.res │ ├── range.16.res │ ├── range.256.res │ ├── range.32.res │ ├── range.64.res │ ├── range.8.res │ ├── show.table.txt │ └── yang04h.colo.sproutsys.com.err │ ├── res22 │ ├── iostat.range.1.txt │ ├── iostat.range.128.txt │ ├── iostat.range.16.txt │ ├── iostat.range.256.txt │ ├── iostat.range.32.txt │ ├── iostat.range.64.txt │ ├── iostat.range.8.txt │ ├── load.sysbench.txt │ ├── range.1.res │ ├── range.128.res │ ├── range.16.res │ ├── range.256.res │ ├── range.32.res │ ├── range.64.res │ ├── range.8.res │ ├── show.table.txt │ └── yang04h.colo.sproutsys.com.err │ ├── res23 │ ├── iostat.range.1.txt │ ├── iostat.range.128.txt │ ├── iostat.range.16.txt │ ├── iostat.range.256.txt │ ├── iostat.range.32.txt │ ├── iostat.range.64.txt │ ├── iostat.range.8.txt │ ├── load.sysbench.txt │ ├── range.1.res │ ├── range.128.res │ ├── range.16.res │ ├── range.256.res │ ├── range.32.res │ ├── range.64.res │ ├── range.8.res │ ├── show.table.txt │ └── yang04h.colo.sproutsys.com.err │ ├── res24 │ ├── iostat.range.1.txt │ ├── iostat.range.128.txt │ ├── iostat.range.16.txt │ ├── iostat.range.256.txt │ ├── iostat.range.32.txt │ ├── iostat.range.64.txt │ ├── iostat.range.8.txt │ ├── load.sysbench.txt │ ├── range.1.res │ ├── range.128.res │ ├── range.16.res │ ├── range.256.res │ ├── range.32.res │ ├── range.64.res │ ├── range.8.res │ ├── show.table.txt │ └── yang04h.colo.sproutsys.com.err │ ├── res25 │ ├── iostat.range.1.txt │ ├── iostat.range.128.txt │ ├── iostat.range.16.txt │ ├── iostat.range.256.txt │ ├── iostat.range.32.txt │ ├── iostat.range.64.txt │ ├── iostat.range.8.txt │ ├── load.sysbench.txt │ ├── range.1.res │ ├── range.128.res │ ├── range.16.res │ ├── range.256.res │ ├── range.32.res │ ├── range.64.res │ ├── range.8.res │ ├── show.table.txt │ └── yang04h.colo.sproutsys.com.err │ ├── res26 │ ├── iostat.range.1.txt │ ├── iostat.range.128.txt │ ├── iostat.range.16.txt │ ├── iostat.range.256.txt │ ├── iostat.range.32.txt │ ├── iostat.range.64.txt │ ├── iostat.range.8.txt │ ├── load.sysbench.txt │ ├── range.1.res │ ├── range.128.res │ ├── range.16.res │ ├── range.256.res │ ├── range.32.res │ ├── range.64.res │ ├── range.8.res │ ├── show.table.txt │ └── yang04h.colo.sproutsys.com.err │ ├── run.mysqld │ ├── run.mysqld.01 │ ├── run.mysqld.02 │ ├── run.mysqld.03 │ ├── run.mysqld.04 │ ├── run.mysqld.05 │ ├── run.mysqld.06 │ ├── run.mysqld.07 │ ├── run.mysqld.10 │ ├── run.mysqld.11 │ ├── run.mysqld.12 │ ├── run.mysqld.13 │ ├── run.mysqld.14 │ ├── run.mysqld.15 │ ├── run.mysqld.16 │ ├── run.mysqld.20 │ ├── run.mysqld.21 │ ├── run.mysqld.22 │ ├── run.mysqld.23 │ ├── run.mysqld.24 │ ├── run.mysqld.25 │ ├── run.mysqld.26 │ ├── run.sysbench │ ├── runme.sh │ ├── server.01 │ ├── server.02 │ ├── server.03 │ ├── server.04 │ ├── server.05 │ ├── server.06 │ ├── server.07 │ ├── server.10 │ ├── server.11 │ ├── server.12 │ ├── server.13 │ ├── server.14 │ ├── server.15 │ ├── server.16 │ ├── server.20 │ ├── server.21 │ ├── server.22 │ ├── server.23 │ ├── server.24 │ ├── server.25 │ ├── server.26 │ ├── sysbench.data │ ├── sysbench.gnuplot │ └── sysbench1.gnuplot ├── mempool ├── Makefile ├── memalign.cc ├── pool.c └── pool.cc ├── posix_spawn ├── .clang-format ├── popen.cc ├── posix_spawn_pipe.cc ├── posix_spawnp.cc └── system.cc └── tsx.cc /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tempesta-tech/blog/HEAD/LICENSE -------------------------------------------------------------------------------- /array_scans.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tempesta-tech/blog/HEAD/array_scans.cc -------------------------------------------------------------------------------- /avx2.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tempesta-tech/blog/HEAD/avx2.cc -------------------------------------------------------------------------------- /div_u64_u16.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tempesta-tech/blog/HEAD/div_u64_u16.cc -------------------------------------------------------------------------------- /fast_str/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tempesta-tech/blog/HEAD/fast_str/Makefile -------------------------------------------------------------------------------- /fast_str/benchmark.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tempesta-tech/blog/HEAD/fast_str/benchmark.cc -------------------------------------------------------------------------------- /fast_str/results.aligned: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tempesta-tech/blog/HEAD/fast_str/results.aligned -------------------------------------------------------------------------------- /fast_str/results.ctext_vchar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tempesta-tech/blog/HEAD/fast_str/results.ctext_vchar -------------------------------------------------------------------------------- /fast_str/results.match_custom: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tempesta-tech/blog/HEAD/fast_str/results.match_custom -------------------------------------------------------------------------------- /fast_str/results.unaligned: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tempesta-tech/blog/HEAD/fast_str/results.unaligned -------------------------------------------------------------------------------- /fast_str/strcasecmp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tempesta-tech/blog/HEAD/fast_str/strcasecmp.c -------------------------------------------------------------------------------- /fast_str/strspn.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tempesta-tech/blog/HEAD/fast_str/strspn.c -------------------------------------------------------------------------------- /gcc-stm.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tempesta-tech/blog/HEAD/gcc-stm.cc -------------------------------------------------------------------------------- /h2_stream_wfq/ebtree/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tempesta-tech/blog/HEAD/h2_stream_wfq/ebtree/LICENSE -------------------------------------------------------------------------------- /h2_stream_wfq/ebtree/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tempesta-tech/blog/HEAD/h2_stream_wfq/ebtree/Makefile -------------------------------------------------------------------------------- /h2_stream_wfq/ebtree/VERSION: -------------------------------------------------------------------------------- 1 | 7.0.0-dev0 2 | -------------------------------------------------------------------------------- /h2_stream_wfq/ebtree/compiler.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tempesta-tech/blog/HEAD/h2_stream_wfq/ebtree/compiler.h -------------------------------------------------------------------------------- /h2_stream_wfq/ebtree/doc/design-notes.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tempesta-tech/blog/HEAD/h2_stream_wfq/ebtree/doc/design-notes.txt -------------------------------------------------------------------------------- /h2_stream_wfq/ebtree/doc/naming.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tempesta-tech/blog/HEAD/h2_stream_wfq/ebtree/doc/naming.txt -------------------------------------------------------------------------------- /h2_stream_wfq/ebtree/eb32tree.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tempesta-tech/blog/HEAD/h2_stream_wfq/ebtree/eb32tree.c -------------------------------------------------------------------------------- /h2_stream_wfq/ebtree/eb32tree.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tempesta-tech/blog/HEAD/h2_stream_wfq/ebtree/eb32tree.h -------------------------------------------------------------------------------- /h2_stream_wfq/ebtree/eb64tree.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tempesta-tech/blog/HEAD/h2_stream_wfq/ebtree/eb64tree.c -------------------------------------------------------------------------------- /h2_stream_wfq/ebtree/eb64tree.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tempesta-tech/blog/HEAD/h2_stream_wfq/ebtree/eb64tree.h -------------------------------------------------------------------------------- /h2_stream_wfq/ebtree/ebimtree.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tempesta-tech/blog/HEAD/h2_stream_wfq/ebtree/ebimtree.c -------------------------------------------------------------------------------- /h2_stream_wfq/ebtree/ebimtree.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tempesta-tech/blog/HEAD/h2_stream_wfq/ebtree/ebimtree.h -------------------------------------------------------------------------------- /h2_stream_wfq/ebtree/ebistree.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tempesta-tech/blog/HEAD/h2_stream_wfq/ebtree/ebistree.c -------------------------------------------------------------------------------- /h2_stream_wfq/ebtree/ebistree.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tempesta-tech/blog/HEAD/h2_stream_wfq/ebtree/ebistree.h -------------------------------------------------------------------------------- /h2_stream_wfq/ebtree/ebmbtree.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tempesta-tech/blog/HEAD/h2_stream_wfq/ebtree/ebmbtree.c -------------------------------------------------------------------------------- /h2_stream_wfq/ebtree/ebmbtree.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tempesta-tech/blog/HEAD/h2_stream_wfq/ebtree/ebmbtree.h -------------------------------------------------------------------------------- /h2_stream_wfq/ebtree/ebpttree.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tempesta-tech/blog/HEAD/h2_stream_wfq/ebtree/ebpttree.h -------------------------------------------------------------------------------- /h2_stream_wfq/ebtree/ebsttree.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tempesta-tech/blog/HEAD/h2_stream_wfq/ebtree/ebsttree.c -------------------------------------------------------------------------------- /h2_stream_wfq/ebtree/ebsttree.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tempesta-tech/blog/HEAD/h2_stream_wfq/ebtree/ebsttree.h -------------------------------------------------------------------------------- /h2_stream_wfq/ebtree/ebtree.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tempesta-tech/blog/HEAD/h2_stream_wfq/ebtree/ebtree.c -------------------------------------------------------------------------------- /h2_stream_wfq/ebtree/ebtree.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tempesta-tech/blog/HEAD/h2_stream_wfq/ebtree/ebtree.h -------------------------------------------------------------------------------- /h2_stream_wfq/ebtree/examples/myexample.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tempesta-tech/blog/HEAD/h2_stream_wfq/ebtree/examples/myexample.c -------------------------------------------------------------------------------- /h2_stream_wfq/ebtree/examples/reduce.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tempesta-tech/blog/HEAD/h2_stream_wfq/ebtree/examples/reduce.c -------------------------------------------------------------------------------- /h2_stream_wfq/ebtree/examples/squidgrep.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tempesta-tech/blog/HEAD/h2_stream_wfq/ebtree/examples/squidgrep.c -------------------------------------------------------------------------------- /h2_stream_wfq/ebtree/test32.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tempesta-tech/blog/HEAD/h2_stream_wfq/ebtree/test32.c -------------------------------------------------------------------------------- /h2_stream_wfq/ebtree/test64.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tempesta-tech/blog/HEAD/h2_stream_wfq/ebtree/test64.c -------------------------------------------------------------------------------- /h2_stream_wfq/ebtree/testebtree.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tempesta-tech/blog/HEAD/h2_stream_wfq/ebtree/testebtree.c -------------------------------------------------------------------------------- /h2_stream_wfq/ebtree/testfunc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tempesta-tech/blog/HEAD/h2_stream_wfq/ebtree/testfunc.c -------------------------------------------------------------------------------- /h2_stream_wfq/ebtree/testst.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tempesta-tech/blog/HEAD/h2_stream_wfq/ebtree/testst.c -------------------------------------------------------------------------------- /h2_stream_wfq/ebtree/testtree.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tempesta-tech/blog/HEAD/h2_stream_wfq/ebtree/testtree.c -------------------------------------------------------------------------------- /h2_stream_wfq/ebtree/testtree64.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tempesta-tech/blog/HEAD/h2_stream_wfq/ebtree/testtree64.c -------------------------------------------------------------------------------- /h2_stream_wfq/fibheap/fibheap.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tempesta-tech/blog/HEAD/h2_stream_wfq/fibheap/fibheap.c -------------------------------------------------------------------------------- /h2_stream_wfq/fibheap/fibheap.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tempesta-tech/blog/HEAD/h2_stream_wfq/fibheap/fibheap.h -------------------------------------------------------------------------------- /h2_stream_wfq/fibheap/gen.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tempesta-tech/blog/HEAD/h2_stream_wfq/fibheap/gen.sh -------------------------------------------------------------------------------- /h2_stream_wfq/gen.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tempesta-tech/blog/HEAD/h2_stream_wfq/gen.sh -------------------------------------------------------------------------------- /h2_stream_wfq/h2o/gen.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tempesta-tech/blog/HEAD/h2_stream_wfq/h2o/gen.sh -------------------------------------------------------------------------------- /h2_stream_wfq/h2o/h2o.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tempesta-tech/blog/HEAD/h2_stream_wfq/h2o/h2o.c -------------------------------------------------------------------------------- /h2_stream_wfq/h2o/h2o.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tempesta-tech/blog/HEAD/h2_stream_wfq/h2o/h2o.h -------------------------------------------------------------------------------- /h2_stream_wfq/heap/gen.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tempesta-tech/blog/HEAD/h2_stream_wfq/heap/gen.sh -------------------------------------------------------------------------------- /h2_stream_wfq/heap/heap.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tempesta-tech/blog/HEAD/h2_stream_wfq/heap/heap.c -------------------------------------------------------------------------------- /h2_stream_wfq/heap/heap.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tempesta-tech/blog/HEAD/h2_stream_wfq/heap/heap.h -------------------------------------------------------------------------------- /h2_stream_wfq/mybenchmark.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tempesta-tech/blog/HEAD/h2_stream_wfq/mybenchmark.cc -------------------------------------------------------------------------------- /h2_stream_wfq/mybenchmark_real.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tempesta-tech/blog/HEAD/h2_stream_wfq/mybenchmark_real.cc -------------------------------------------------------------------------------- /htrie/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tempesta-tech/blog/HEAD/htrie/Makefile -------------------------------------------------------------------------------- /htrie/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tempesta-tech/blog/HEAD/htrie/README.md -------------------------------------------------------------------------------- /htrie/alloc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tempesta-tech/blog/HEAD/htrie/alloc.c -------------------------------------------------------------------------------- /htrie/alloc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tempesta-tech/blog/HEAD/htrie/alloc.h -------------------------------------------------------------------------------- /htrie/benchmark.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tempesta-tech/blog/HEAD/htrie/benchmark.cc -------------------------------------------------------------------------------- /htrie/common.hh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tempesta-tech/blog/HEAD/htrie/common.hh -------------------------------------------------------------------------------- /htrie/evict.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tempesta-tech/blog/HEAD/htrie/evict.c -------------------------------------------------------------------------------- /htrie/hashfn.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tempesta-tech/blog/HEAD/htrie/hashfn.h -------------------------------------------------------------------------------- /htrie/htrie.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tempesta-tech/blog/HEAD/htrie/htrie.c -------------------------------------------------------------------------------- /htrie/htrie.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tempesta-tech/blog/HEAD/htrie/htrie.h -------------------------------------------------------------------------------- /htrie/kernel_mocks.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tempesta-tech/blog/HEAD/htrie/kernel_mocks.h -------------------------------------------------------------------------------- /htrie/lfstack.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tempesta-tech/blog/HEAD/htrie/lfstack.h -------------------------------------------------------------------------------- /htrie/lib.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tempesta-tech/blog/HEAD/htrie/lib.cc -------------------------------------------------------------------------------- /htrie/lib/log.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tempesta-tech/blog/HEAD/htrie/lib/log.h -------------------------------------------------------------------------------- /htrie/mapfile.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tempesta-tech/blog/HEAD/htrie/mapfile.c -------------------------------------------------------------------------------- /htrie/mapfile.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tempesta-tech/blog/HEAD/htrie/mapfile.h -------------------------------------------------------------------------------- /htrie/results: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tempesta-tech/blog/HEAD/htrie/results -------------------------------------------------------------------------------- /htrie/table.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tempesta-tech/blog/HEAD/htrie/table.c -------------------------------------------------------------------------------- /htrie/table.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tempesta-tech/blog/HEAD/htrie/table.h -------------------------------------------------------------------------------- /htrie/tdb.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tempesta-tech/blog/HEAD/htrie/tdb.h -------------------------------------------------------------------------------- /htrie/tdb_internal.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tempesta-tech/blog/HEAD/htrie/tdb_internal.h -------------------------------------------------------------------------------- /htrie/test.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tempesta-tech/blog/HEAD/htrie/test.cc -------------------------------------------------------------------------------- /htrie/test_lfstack.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tempesta-tech/blog/HEAD/htrie/test_lfstack.cc -------------------------------------------------------------------------------- /htrie/trie.gdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tempesta-tech/blog/HEAD/htrie/trie.gdb -------------------------------------------------------------------------------- /htrie/trie_gdb.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tempesta-tech/blog/HEAD/htrie/trie_gdb.py -------------------------------------------------------------------------------- /http_benchmark/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tempesta-tech/blog/HEAD/http_benchmark/Makefile -------------------------------------------------------------------------------- /http_benchmark/http.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tempesta-tech/blog/HEAD/http_benchmark/http.h -------------------------------------------------------------------------------- /http_benchmark/http_benchmark.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tempesta-tech/blog/HEAD/http_benchmark/http_benchmark.c -------------------------------------------------------------------------------- /http_benchmark/http_goto.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tempesta-tech/blog/HEAD/http_benchmark/http_goto.c -------------------------------------------------------------------------------- /http_benchmark/http_hsm.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tempesta-tech/blog/HEAD/http_benchmark/http_hsm.c -------------------------------------------------------------------------------- /http_benchmark/http_ngx.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tempesta-tech/blog/HEAD/http_benchmark/http_ngx.c -------------------------------------------------------------------------------- /http_benchmark/http_s_tbl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tempesta-tech/blog/HEAD/http_benchmark/http_s_tbl.h -------------------------------------------------------------------------------- /http_benchmark/http_tbl.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tempesta-tech/blog/HEAD/http_benchmark/http_tbl.c -------------------------------------------------------------------------------- /int_align/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tempesta-tech/blog/HEAD/int_align/Makefile -------------------------------------------------------------------------------- /int_align/alignment.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tempesta-tech/blog/HEAD/int_align/alignment.c -------------------------------------------------------------------------------- /int_align/alignment_f.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tempesta-tech/blog/HEAD/int_align/alignment_f.c -------------------------------------------------------------------------------- /kstrings/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tempesta-tech/blog/HEAD/kstrings/Makefile -------------------------------------------------------------------------------- /kstrings/kstring.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tempesta-tech/blog/HEAD/kstrings/kstring.h -------------------------------------------------------------------------------- /kstrings/memcmp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tempesta-tech/blog/HEAD/kstrings/memcmp.c -------------------------------------------------------------------------------- /kstrings/memcmp_res.kernel: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tempesta-tech/blog/HEAD/kstrings/memcmp_res.kernel -------------------------------------------------------------------------------- /kstrings/memcmp_res.user_space: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tempesta-tech/blog/HEAD/kstrings/memcmp_res.user_space -------------------------------------------------------------------------------- /kstrings/memcpy.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tempesta-tech/blog/HEAD/kstrings/memcpy.c -------------------------------------------------------------------------------- /kstrings/memcpy_res.kernel: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tempesta-tech/blog/HEAD/kstrings/memcpy_res.kernel -------------------------------------------------------------------------------- /kstrings/memcpy_res.user_space: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tempesta-tech/blog/HEAD/kstrings/memcpy_res.user_space -------------------------------------------------------------------------------- /kstrings/memset.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tempesta-tech/blog/HEAD/kstrings/memset.c -------------------------------------------------------------------------------- /kstrings/memset_res.kernel: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tempesta-tech/blog/HEAD/kstrings/memset_res.kernel -------------------------------------------------------------------------------- /kstrings/memset_res.user_space: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tempesta-tech/blog/HEAD/kstrings/memset_res.user_space -------------------------------------------------------------------------------- /kstrings/stdlib.h: -------------------------------------------------------------------------------- 1 | /* dummy */ 2 | -------------------------------------------------------------------------------- /lockfree_rb_q.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tempesta-tech/blog/HEAD/lockfree_rb_q.cc -------------------------------------------------------------------------------- /mariadb/collations/gen_graphs.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tempesta-tech/blog/HEAD/mariadb/collations/gen_graphs.sh -------------------------------------------------------------------------------- /mariadb/collations/latin1/DESC: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tempesta-tech/blog/HEAD/mariadb/collations/latin1/DESC -------------------------------------------------------------------------------- /mariadb/collations/latin1/QPS.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tempesta-tech/blog/HEAD/mariadb/collations/latin1/QPS.dat -------------------------------------------------------------------------------- /mariadb/collations/latin1/RT_95.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tempesta-tech/blog/HEAD/mariadb/collations/latin1/RT_95.dat -------------------------------------------------------------------------------- /mariadb/collations/latin1/RT_avg.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tempesta-tech/blog/HEAD/mariadb/collations/latin1/RT_avg.dat -------------------------------------------------------------------------------- /mariadb/collations/latin1/collect.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tempesta-tech/blog/HEAD/mariadb/collations/latin1/collect.pl -------------------------------------------------------------------------------- /mariadb/collations/latin1/config.05: -------------------------------------------------------------------------------- 1 | IS_MYSQL=1 2 | -------------------------------------------------------------------------------- /mariadb/collations/latin1/config.06: -------------------------------------------------------------------------------- 1 | IS_MYSQL=1 2 | -------------------------------------------------------------------------------- /mariadb/collations/latin1/config.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tempesta-tech/blog/HEAD/mariadb/collations/latin1/config.sh -------------------------------------------------------------------------------- /mariadb/collations/latin1/lua/common.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tempesta-tech/blog/HEAD/mariadb/collations/latin1/lua/common.lua -------------------------------------------------------------------------------- /mariadb/collations/latin1/lua/oltp.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tempesta-tech/blog/HEAD/mariadb/collations/latin1/lua/oltp.lua -------------------------------------------------------------------------------- /mariadb/collations/latin1/my.cnf.01: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tempesta-tech/blog/HEAD/mariadb/collations/latin1/my.cnf.01 -------------------------------------------------------------------------------- /mariadb/collations/latin1/my.cnf.02: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tempesta-tech/blog/HEAD/mariadb/collations/latin1/my.cnf.02 -------------------------------------------------------------------------------- /mariadb/collations/latin1/my.cnf.03: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tempesta-tech/blog/HEAD/mariadb/collations/latin1/my.cnf.03 -------------------------------------------------------------------------------- /mariadb/collations/latin1/my.cnf.04: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tempesta-tech/blog/HEAD/mariadb/collations/latin1/my.cnf.04 -------------------------------------------------------------------------------- /mariadb/collations/latin1/my.cnf.05: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tempesta-tech/blog/HEAD/mariadb/collations/latin1/my.cnf.05 -------------------------------------------------------------------------------- /mariadb/collations/latin1/my.cnf.06: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tempesta-tech/blog/HEAD/mariadb/collations/latin1/my.cnf.06 -------------------------------------------------------------------------------- /mariadb/collations/latin1/res01/cheetah02.err: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tempesta-tech/blog/HEAD/mariadb/collations/latin1/res01/cheetah02.err -------------------------------------------------------------------------------- /mariadb/collations/latin1/res01/iostat.ro.1.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tempesta-tech/blog/HEAD/mariadb/collations/latin1/res01/iostat.ro.1.res -------------------------------------------------------------------------------- /mariadb/collations/latin1/res01/iostat.ro.128.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tempesta-tech/blog/HEAD/mariadb/collations/latin1/res01/iostat.ro.128.res -------------------------------------------------------------------------------- /mariadb/collations/latin1/res01/iostat.ro.16.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tempesta-tech/blog/HEAD/mariadb/collations/latin1/res01/iostat.ro.16.res -------------------------------------------------------------------------------- /mariadb/collations/latin1/res01/iostat.ro.2.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tempesta-tech/blog/HEAD/mariadb/collations/latin1/res01/iostat.ro.2.res -------------------------------------------------------------------------------- /mariadb/collations/latin1/res01/iostat.ro.256.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tempesta-tech/blog/HEAD/mariadb/collations/latin1/res01/iostat.ro.256.res -------------------------------------------------------------------------------- /mariadb/collations/latin1/res01/iostat.ro.32.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tempesta-tech/blog/HEAD/mariadb/collations/latin1/res01/iostat.ro.32.res -------------------------------------------------------------------------------- /mariadb/collations/latin1/res01/iostat.ro.4.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tempesta-tech/blog/HEAD/mariadb/collations/latin1/res01/iostat.ro.4.res -------------------------------------------------------------------------------- /mariadb/collations/latin1/res01/iostat.ro.64.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tempesta-tech/blog/HEAD/mariadb/collations/latin1/res01/iostat.ro.64.res -------------------------------------------------------------------------------- /mariadb/collations/latin1/res01/iostat.ro.8.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tempesta-tech/blog/HEAD/mariadb/collations/latin1/res01/iostat.ro.8.res -------------------------------------------------------------------------------- /mariadb/collations/latin1/res01/sysbench.ro.long.1.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tempesta-tech/blog/HEAD/mariadb/collations/latin1/res01/sysbench.ro.long.1.res -------------------------------------------------------------------------------- /mariadb/collations/latin1/res01/sysbench.ro.long.2.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tempesta-tech/blog/HEAD/mariadb/collations/latin1/res01/sysbench.ro.long.2.res -------------------------------------------------------------------------------- /mariadb/collations/latin1/res01/sysbench.ro.long.4.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tempesta-tech/blog/HEAD/mariadb/collations/latin1/res01/sysbench.ro.long.4.res -------------------------------------------------------------------------------- /mariadb/collations/latin1/res01/sysbench.ro.long.8.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tempesta-tech/blog/HEAD/mariadb/collations/latin1/res01/sysbench.ro.long.8.res -------------------------------------------------------------------------------- /mariadb/collations/latin1/res02/cheetah02.err: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tempesta-tech/blog/HEAD/mariadb/collations/latin1/res02/cheetah02.err -------------------------------------------------------------------------------- /mariadb/collations/latin1/res02/iostat.ro.1.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tempesta-tech/blog/HEAD/mariadb/collations/latin1/res02/iostat.ro.1.res -------------------------------------------------------------------------------- /mariadb/collations/latin1/res02/iostat.ro.128.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tempesta-tech/blog/HEAD/mariadb/collations/latin1/res02/iostat.ro.128.res -------------------------------------------------------------------------------- /mariadb/collations/latin1/res02/iostat.ro.16.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tempesta-tech/blog/HEAD/mariadb/collations/latin1/res02/iostat.ro.16.res -------------------------------------------------------------------------------- /mariadb/collations/latin1/res02/iostat.ro.2.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tempesta-tech/blog/HEAD/mariadb/collations/latin1/res02/iostat.ro.2.res -------------------------------------------------------------------------------- /mariadb/collations/latin1/res02/iostat.ro.256.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tempesta-tech/blog/HEAD/mariadb/collations/latin1/res02/iostat.ro.256.res -------------------------------------------------------------------------------- /mariadb/collations/latin1/res02/iostat.ro.32.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tempesta-tech/blog/HEAD/mariadb/collations/latin1/res02/iostat.ro.32.res -------------------------------------------------------------------------------- /mariadb/collations/latin1/res02/iostat.ro.4.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tempesta-tech/blog/HEAD/mariadb/collations/latin1/res02/iostat.ro.4.res -------------------------------------------------------------------------------- /mariadb/collations/latin1/res02/iostat.ro.64.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tempesta-tech/blog/HEAD/mariadb/collations/latin1/res02/iostat.ro.64.res -------------------------------------------------------------------------------- /mariadb/collations/latin1/res02/iostat.ro.8.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tempesta-tech/blog/HEAD/mariadb/collations/latin1/res02/iostat.ro.8.res -------------------------------------------------------------------------------- /mariadb/collations/latin1/res02/sysbench.ro.long.1.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tempesta-tech/blog/HEAD/mariadb/collations/latin1/res02/sysbench.ro.long.1.res -------------------------------------------------------------------------------- /mariadb/collations/latin1/res02/sysbench.ro.long.2.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tempesta-tech/blog/HEAD/mariadb/collations/latin1/res02/sysbench.ro.long.2.res -------------------------------------------------------------------------------- /mariadb/collations/latin1/res02/sysbench.ro.long.4.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tempesta-tech/blog/HEAD/mariadb/collations/latin1/res02/sysbench.ro.long.4.res -------------------------------------------------------------------------------- /mariadb/collations/latin1/res02/sysbench.ro.long.8.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tempesta-tech/blog/HEAD/mariadb/collations/latin1/res02/sysbench.ro.long.8.res -------------------------------------------------------------------------------- /mariadb/collations/latin1/res03/cheetah02.err: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tempesta-tech/blog/HEAD/mariadb/collations/latin1/res03/cheetah02.err -------------------------------------------------------------------------------- /mariadb/collations/latin1/res03/iostat.ro.1.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tempesta-tech/blog/HEAD/mariadb/collations/latin1/res03/iostat.ro.1.res -------------------------------------------------------------------------------- /mariadb/collations/latin1/res03/iostat.ro.128.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tempesta-tech/blog/HEAD/mariadb/collations/latin1/res03/iostat.ro.128.res -------------------------------------------------------------------------------- /mariadb/collations/latin1/res03/iostat.ro.16.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tempesta-tech/blog/HEAD/mariadb/collations/latin1/res03/iostat.ro.16.res -------------------------------------------------------------------------------- /mariadb/collations/latin1/res03/iostat.ro.2.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tempesta-tech/blog/HEAD/mariadb/collations/latin1/res03/iostat.ro.2.res -------------------------------------------------------------------------------- /mariadb/collations/latin1/res03/iostat.ro.256.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tempesta-tech/blog/HEAD/mariadb/collations/latin1/res03/iostat.ro.256.res -------------------------------------------------------------------------------- /mariadb/collations/latin1/res03/iostat.ro.32.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tempesta-tech/blog/HEAD/mariadb/collations/latin1/res03/iostat.ro.32.res -------------------------------------------------------------------------------- /mariadb/collations/latin1/res03/iostat.ro.4.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tempesta-tech/blog/HEAD/mariadb/collations/latin1/res03/iostat.ro.4.res -------------------------------------------------------------------------------- /mariadb/collations/latin1/res03/iostat.ro.64.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tempesta-tech/blog/HEAD/mariadb/collations/latin1/res03/iostat.ro.64.res -------------------------------------------------------------------------------- /mariadb/collations/latin1/res03/iostat.ro.8.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tempesta-tech/blog/HEAD/mariadb/collations/latin1/res03/iostat.ro.8.res -------------------------------------------------------------------------------- /mariadb/collations/latin1/res03/sysbench.ro.long.1.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tempesta-tech/blog/HEAD/mariadb/collations/latin1/res03/sysbench.ro.long.1.res -------------------------------------------------------------------------------- /mariadb/collations/latin1/res03/sysbench.ro.long.2.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tempesta-tech/blog/HEAD/mariadb/collations/latin1/res03/sysbench.ro.long.2.res -------------------------------------------------------------------------------- /mariadb/collations/latin1/res03/sysbench.ro.long.4.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tempesta-tech/blog/HEAD/mariadb/collations/latin1/res03/sysbench.ro.long.4.res -------------------------------------------------------------------------------- /mariadb/collations/latin1/res03/sysbench.ro.long.8.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tempesta-tech/blog/HEAD/mariadb/collations/latin1/res03/sysbench.ro.long.8.res -------------------------------------------------------------------------------- /mariadb/collations/latin1/res04/cheetah02.err: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tempesta-tech/blog/HEAD/mariadb/collations/latin1/res04/cheetah02.err -------------------------------------------------------------------------------- /mariadb/collations/latin1/res04/iostat.ro.1.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tempesta-tech/blog/HEAD/mariadb/collations/latin1/res04/iostat.ro.1.res -------------------------------------------------------------------------------- /mariadb/collations/latin1/res04/iostat.ro.128.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tempesta-tech/blog/HEAD/mariadb/collations/latin1/res04/iostat.ro.128.res -------------------------------------------------------------------------------- /mariadb/collations/latin1/res04/iostat.ro.16.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tempesta-tech/blog/HEAD/mariadb/collations/latin1/res04/iostat.ro.16.res -------------------------------------------------------------------------------- /mariadb/collations/latin1/res04/iostat.ro.2.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tempesta-tech/blog/HEAD/mariadb/collations/latin1/res04/iostat.ro.2.res -------------------------------------------------------------------------------- /mariadb/collations/latin1/res04/iostat.ro.256.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tempesta-tech/blog/HEAD/mariadb/collations/latin1/res04/iostat.ro.256.res -------------------------------------------------------------------------------- /mariadb/collations/latin1/res04/iostat.ro.32.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tempesta-tech/blog/HEAD/mariadb/collations/latin1/res04/iostat.ro.32.res -------------------------------------------------------------------------------- /mariadb/collations/latin1/res04/iostat.ro.4.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tempesta-tech/blog/HEAD/mariadb/collations/latin1/res04/iostat.ro.4.res -------------------------------------------------------------------------------- /mariadb/collations/latin1/res04/iostat.ro.64.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tempesta-tech/blog/HEAD/mariadb/collations/latin1/res04/iostat.ro.64.res -------------------------------------------------------------------------------- /mariadb/collations/latin1/res04/iostat.ro.8.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tempesta-tech/blog/HEAD/mariadb/collations/latin1/res04/iostat.ro.8.res -------------------------------------------------------------------------------- /mariadb/collations/latin1/res04/sysbench.ro.long.1.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tempesta-tech/blog/HEAD/mariadb/collations/latin1/res04/sysbench.ro.long.1.res -------------------------------------------------------------------------------- /mariadb/collations/latin1/res04/sysbench.ro.long.2.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tempesta-tech/blog/HEAD/mariadb/collations/latin1/res04/sysbench.ro.long.2.res -------------------------------------------------------------------------------- /mariadb/collations/latin1/res04/sysbench.ro.long.4.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tempesta-tech/blog/HEAD/mariadb/collations/latin1/res04/sysbench.ro.long.4.res -------------------------------------------------------------------------------- /mariadb/collations/latin1/res04/sysbench.ro.long.8.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tempesta-tech/blog/HEAD/mariadb/collations/latin1/res04/sysbench.ro.long.8.res -------------------------------------------------------------------------------- /mariadb/collations/latin1/res05/cheetah02.err: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tempesta-tech/blog/HEAD/mariadb/collations/latin1/res05/cheetah02.err -------------------------------------------------------------------------------- /mariadb/collations/latin1/res05/iostat.ro.1.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tempesta-tech/blog/HEAD/mariadb/collations/latin1/res05/iostat.ro.1.res -------------------------------------------------------------------------------- /mariadb/collations/latin1/res05/iostat.ro.128.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tempesta-tech/blog/HEAD/mariadb/collations/latin1/res05/iostat.ro.128.res -------------------------------------------------------------------------------- /mariadb/collations/latin1/res05/iostat.ro.16.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tempesta-tech/blog/HEAD/mariadb/collations/latin1/res05/iostat.ro.16.res -------------------------------------------------------------------------------- /mariadb/collations/latin1/res05/iostat.ro.2.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tempesta-tech/blog/HEAD/mariadb/collations/latin1/res05/iostat.ro.2.res -------------------------------------------------------------------------------- /mariadb/collations/latin1/res05/iostat.ro.256.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tempesta-tech/blog/HEAD/mariadb/collations/latin1/res05/iostat.ro.256.res -------------------------------------------------------------------------------- /mariadb/collations/latin1/res05/iostat.ro.32.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tempesta-tech/blog/HEAD/mariadb/collations/latin1/res05/iostat.ro.32.res -------------------------------------------------------------------------------- /mariadb/collations/latin1/res05/iostat.ro.4.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tempesta-tech/blog/HEAD/mariadb/collations/latin1/res05/iostat.ro.4.res -------------------------------------------------------------------------------- /mariadb/collations/latin1/res05/iostat.ro.64.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tempesta-tech/blog/HEAD/mariadb/collations/latin1/res05/iostat.ro.64.res -------------------------------------------------------------------------------- /mariadb/collations/latin1/res05/iostat.ro.8.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tempesta-tech/blog/HEAD/mariadb/collations/latin1/res05/iostat.ro.8.res -------------------------------------------------------------------------------- /mariadb/collations/latin1/res05/sysbench.ro.long.1.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tempesta-tech/blog/HEAD/mariadb/collations/latin1/res05/sysbench.ro.long.1.res -------------------------------------------------------------------------------- /mariadb/collations/latin1/res05/sysbench.ro.long.2.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tempesta-tech/blog/HEAD/mariadb/collations/latin1/res05/sysbench.ro.long.2.res -------------------------------------------------------------------------------- /mariadb/collations/latin1/res05/sysbench.ro.long.4.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tempesta-tech/blog/HEAD/mariadb/collations/latin1/res05/sysbench.ro.long.4.res -------------------------------------------------------------------------------- /mariadb/collations/latin1/res05/sysbench.ro.long.8.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tempesta-tech/blog/HEAD/mariadb/collations/latin1/res05/sysbench.ro.long.8.res -------------------------------------------------------------------------------- /mariadb/collations/latin1/res06/cheetah02.err: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tempesta-tech/blog/HEAD/mariadb/collations/latin1/res06/cheetah02.err -------------------------------------------------------------------------------- /mariadb/collations/latin1/res06/iostat.ro.1.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tempesta-tech/blog/HEAD/mariadb/collations/latin1/res06/iostat.ro.1.res -------------------------------------------------------------------------------- /mariadb/collations/latin1/res06/iostat.ro.128.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tempesta-tech/blog/HEAD/mariadb/collations/latin1/res06/iostat.ro.128.res -------------------------------------------------------------------------------- /mariadb/collations/latin1/res06/iostat.ro.16.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tempesta-tech/blog/HEAD/mariadb/collations/latin1/res06/iostat.ro.16.res -------------------------------------------------------------------------------- /mariadb/collations/latin1/res06/iostat.ro.2.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tempesta-tech/blog/HEAD/mariadb/collations/latin1/res06/iostat.ro.2.res -------------------------------------------------------------------------------- /mariadb/collations/latin1/res06/iostat.ro.256.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tempesta-tech/blog/HEAD/mariadb/collations/latin1/res06/iostat.ro.256.res -------------------------------------------------------------------------------- /mariadb/collations/latin1/res06/iostat.ro.32.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tempesta-tech/blog/HEAD/mariadb/collations/latin1/res06/iostat.ro.32.res -------------------------------------------------------------------------------- /mariadb/collations/latin1/res06/iostat.ro.4.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tempesta-tech/blog/HEAD/mariadb/collations/latin1/res06/iostat.ro.4.res -------------------------------------------------------------------------------- /mariadb/collations/latin1/res06/iostat.ro.64.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tempesta-tech/blog/HEAD/mariadb/collations/latin1/res06/iostat.ro.64.res -------------------------------------------------------------------------------- /mariadb/collations/latin1/res06/iostat.ro.8.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tempesta-tech/blog/HEAD/mariadb/collations/latin1/res06/iostat.ro.8.res -------------------------------------------------------------------------------- /mariadb/collations/latin1/res06/sysbench.ro.long.1.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tempesta-tech/blog/HEAD/mariadb/collations/latin1/res06/sysbench.ro.long.1.res -------------------------------------------------------------------------------- /mariadb/collations/latin1/res06/sysbench.ro.long.2.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tempesta-tech/blog/HEAD/mariadb/collations/latin1/res06/sysbench.ro.long.2.res -------------------------------------------------------------------------------- /mariadb/collations/latin1/res06/sysbench.ro.long.4.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tempesta-tech/blog/HEAD/mariadb/collations/latin1/res06/sysbench.ro.long.4.res -------------------------------------------------------------------------------- /mariadb/collations/latin1/res06/sysbench.ro.long.8.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tempesta-tech/blog/HEAD/mariadb/collations/latin1/res06/sysbench.ro.long.8.res -------------------------------------------------------------------------------- /mariadb/collations/latin1/res10/iostat.ro.1.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tempesta-tech/blog/HEAD/mariadb/collations/latin1/res10/iostat.ro.1.res -------------------------------------------------------------------------------- /mariadb/collations/latin1/res10/iostat.ro.128.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tempesta-tech/blog/HEAD/mariadb/collations/latin1/res10/iostat.ro.128.res -------------------------------------------------------------------------------- /mariadb/collations/latin1/res10/iostat.ro.16.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tempesta-tech/blog/HEAD/mariadb/collations/latin1/res10/iostat.ro.16.res -------------------------------------------------------------------------------- /mariadb/collations/latin1/res10/iostat.ro.2.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tempesta-tech/blog/HEAD/mariadb/collations/latin1/res10/iostat.ro.2.res -------------------------------------------------------------------------------- /mariadb/collations/latin1/res10/iostat.ro.256.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tempesta-tech/blog/HEAD/mariadb/collations/latin1/res10/iostat.ro.256.res -------------------------------------------------------------------------------- /mariadb/collations/latin1/res10/iostat.ro.32.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tempesta-tech/blog/HEAD/mariadb/collations/latin1/res10/iostat.ro.32.res -------------------------------------------------------------------------------- /mariadb/collations/latin1/res10/iostat.ro.4.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tempesta-tech/blog/HEAD/mariadb/collations/latin1/res10/iostat.ro.4.res -------------------------------------------------------------------------------- /mariadb/collations/latin1/res10/iostat.ro.64.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tempesta-tech/blog/HEAD/mariadb/collations/latin1/res10/iostat.ro.64.res -------------------------------------------------------------------------------- /mariadb/collations/latin1/res10/iostat.ro.8.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tempesta-tech/blog/HEAD/mariadb/collations/latin1/res10/iostat.ro.8.res -------------------------------------------------------------------------------- /mariadb/collations/latin1/res10/sysbench.ro.long.1.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tempesta-tech/blog/HEAD/mariadb/collations/latin1/res10/sysbench.ro.long.1.res -------------------------------------------------------------------------------- /mariadb/collations/latin1/res10/sysbench.ro.long.2.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tempesta-tech/blog/HEAD/mariadb/collations/latin1/res10/sysbench.ro.long.2.res -------------------------------------------------------------------------------- /mariadb/collations/latin1/res10/sysbench.ro.long.4.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tempesta-tech/blog/HEAD/mariadb/collations/latin1/res10/sysbench.ro.long.4.res -------------------------------------------------------------------------------- /mariadb/collations/latin1/res10/sysbench.ro.long.8.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tempesta-tech/blog/HEAD/mariadb/collations/latin1/res10/sysbench.ro.long.8.res -------------------------------------------------------------------------------- /mariadb/collations/latin1/res11/iostat.ro.1.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tempesta-tech/blog/HEAD/mariadb/collations/latin1/res11/iostat.ro.1.res -------------------------------------------------------------------------------- /mariadb/collations/latin1/res11/iostat.ro.128.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tempesta-tech/blog/HEAD/mariadb/collations/latin1/res11/iostat.ro.128.res -------------------------------------------------------------------------------- /mariadb/collations/latin1/res11/iostat.ro.16.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tempesta-tech/blog/HEAD/mariadb/collations/latin1/res11/iostat.ro.16.res -------------------------------------------------------------------------------- /mariadb/collations/latin1/res11/iostat.ro.2.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tempesta-tech/blog/HEAD/mariadb/collations/latin1/res11/iostat.ro.2.res -------------------------------------------------------------------------------- /mariadb/collations/latin1/res11/iostat.ro.256.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tempesta-tech/blog/HEAD/mariadb/collations/latin1/res11/iostat.ro.256.res -------------------------------------------------------------------------------- /mariadb/collations/latin1/res11/iostat.ro.32.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tempesta-tech/blog/HEAD/mariadb/collations/latin1/res11/iostat.ro.32.res -------------------------------------------------------------------------------- /mariadb/collations/latin1/res11/iostat.ro.4.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tempesta-tech/blog/HEAD/mariadb/collations/latin1/res11/iostat.ro.4.res -------------------------------------------------------------------------------- /mariadb/collations/latin1/res11/iostat.ro.64.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tempesta-tech/blog/HEAD/mariadb/collations/latin1/res11/iostat.ro.64.res -------------------------------------------------------------------------------- /mariadb/collations/latin1/res11/iostat.ro.8.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tempesta-tech/blog/HEAD/mariadb/collations/latin1/res11/iostat.ro.8.res -------------------------------------------------------------------------------- /mariadb/collations/latin1/res11/sysbench.ro.long.1.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tempesta-tech/blog/HEAD/mariadb/collations/latin1/res11/sysbench.ro.long.1.res -------------------------------------------------------------------------------- /mariadb/collations/latin1/res11/sysbench.ro.long.2.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tempesta-tech/blog/HEAD/mariadb/collations/latin1/res11/sysbench.ro.long.2.res -------------------------------------------------------------------------------- /mariadb/collations/latin1/res11/sysbench.ro.long.4.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tempesta-tech/blog/HEAD/mariadb/collations/latin1/res11/sysbench.ro.long.4.res -------------------------------------------------------------------------------- /mariadb/collations/latin1/res11/sysbench.ro.long.8.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tempesta-tech/blog/HEAD/mariadb/collations/latin1/res11/sysbench.ro.long.8.res -------------------------------------------------------------------------------- /mariadb/collations/latin1/run.mysqld: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tempesta-tech/blog/HEAD/mariadb/collations/latin1/run.mysqld -------------------------------------------------------------------------------- /mariadb/collations/latin1/run.sysbench: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tempesta-tech/blog/HEAD/mariadb/collations/latin1/run.sysbench -------------------------------------------------------------------------------- /mariadb/collations/latin1/runme.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tempesta-tech/blog/HEAD/mariadb/collations/latin1/runme.sh -------------------------------------------------------------------------------- /mariadb/collations/latin1/server.01: -------------------------------------------------------------------------------- 1 | mariadb-10.1.36 2 | -------------------------------------------------------------------------------- /mariadb/collations/latin1/server.02: -------------------------------------------------------------------------------- 1 | mariadb-10.2.18 2 | -------------------------------------------------------------------------------- /mariadb/collations/latin1/server.03: -------------------------------------------------------------------------------- 1 | mariadb-10.3.9 2 | -------------------------------------------------------------------------------- /mariadb/collations/latin1/server.04: -------------------------------------------------------------------------------- 1 | mysql-5.6.36 2 | -------------------------------------------------------------------------------- /mariadb/collations/latin1/server.05: -------------------------------------------------------------------------------- 1 | mysql-5.7.21 2 | -------------------------------------------------------------------------------- /mariadb/collations/latin1/server.06: -------------------------------------------------------------------------------- 1 | mysql-8.0.11 2 | -------------------------------------------------------------------------------- /mariadb/collations/mariadb.cnf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tempesta-tech/blog/HEAD/mariadb/collations/mariadb.cnf -------------------------------------------------------------------------------- /mariadb/collations/mysql.cnf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tempesta-tech/blog/HEAD/mariadb/collations/mysql.cnf -------------------------------------------------------------------------------- /mariadb/collations/utf8-general/DESC: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tempesta-tech/blog/HEAD/mariadb/collations/utf8-general/DESC -------------------------------------------------------------------------------- /mariadb/collations/utf8-general/QPS.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tempesta-tech/blog/HEAD/mariadb/collations/utf8-general/QPS.dat -------------------------------------------------------------------------------- /mariadb/collations/utf8-general/RT_95.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tempesta-tech/blog/HEAD/mariadb/collations/utf8-general/RT_95.dat -------------------------------------------------------------------------------- /mariadb/collations/utf8-general/RT_avg.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tempesta-tech/blog/HEAD/mariadb/collations/utf8-general/RT_avg.dat -------------------------------------------------------------------------------- /mariadb/collations/utf8-general/collect.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tempesta-tech/blog/HEAD/mariadb/collations/utf8-general/collect.pl -------------------------------------------------------------------------------- /mariadb/collations/utf8-general/config.05: -------------------------------------------------------------------------------- 1 | IS_MYSQL=1 2 | -------------------------------------------------------------------------------- /mariadb/collations/utf8-general/config.06: -------------------------------------------------------------------------------- 1 | IS_MYSQL=1 2 | -------------------------------------------------------------------------------- /mariadb/collations/utf8-general/config.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tempesta-tech/blog/HEAD/mariadb/collations/utf8-general/config.sh -------------------------------------------------------------------------------- /mariadb/collations/utf8-general/lua/common.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tempesta-tech/blog/HEAD/mariadb/collations/utf8-general/lua/common.lua -------------------------------------------------------------------------------- /mariadb/collations/utf8-general/lua/oltp.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tempesta-tech/blog/HEAD/mariadb/collations/utf8-general/lua/oltp.lua -------------------------------------------------------------------------------- /mariadb/collations/utf8-general/my.cnf.01: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tempesta-tech/blog/HEAD/mariadb/collations/utf8-general/my.cnf.01 -------------------------------------------------------------------------------- /mariadb/collations/utf8-general/my.cnf.02: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tempesta-tech/blog/HEAD/mariadb/collations/utf8-general/my.cnf.02 -------------------------------------------------------------------------------- /mariadb/collations/utf8-general/my.cnf.03: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tempesta-tech/blog/HEAD/mariadb/collations/utf8-general/my.cnf.03 -------------------------------------------------------------------------------- /mariadb/collations/utf8-general/my.cnf.04: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tempesta-tech/blog/HEAD/mariadb/collations/utf8-general/my.cnf.04 -------------------------------------------------------------------------------- /mariadb/collations/utf8-general/my.cnf.05: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tempesta-tech/blog/HEAD/mariadb/collations/utf8-general/my.cnf.05 -------------------------------------------------------------------------------- /mariadb/collations/utf8-general/my.cnf.06: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tempesta-tech/blog/HEAD/mariadb/collations/utf8-general/my.cnf.06 -------------------------------------------------------------------------------- /mariadb/collations/utf8-general/nohup.out: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tempesta-tech/blog/HEAD/mariadb/collations/utf8-general/nohup.out -------------------------------------------------------------------------------- /mariadb/collations/utf8-general/res01/cheetah02.err: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tempesta-tech/blog/HEAD/mariadb/collations/utf8-general/res01/cheetah02.err -------------------------------------------------------------------------------- /mariadb/collations/utf8-general/res01/iostat.ro.1.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tempesta-tech/blog/HEAD/mariadb/collations/utf8-general/res01/iostat.ro.1.res -------------------------------------------------------------------------------- /mariadb/collations/utf8-general/res01/iostat.ro.16.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tempesta-tech/blog/HEAD/mariadb/collations/utf8-general/res01/iostat.ro.16.res -------------------------------------------------------------------------------- /mariadb/collations/utf8-general/res01/iostat.ro.2.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tempesta-tech/blog/HEAD/mariadb/collations/utf8-general/res01/iostat.ro.2.res -------------------------------------------------------------------------------- /mariadb/collations/utf8-general/res01/iostat.ro.32.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tempesta-tech/blog/HEAD/mariadb/collations/utf8-general/res01/iostat.ro.32.res -------------------------------------------------------------------------------- /mariadb/collations/utf8-general/res01/iostat.ro.4.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tempesta-tech/blog/HEAD/mariadb/collations/utf8-general/res01/iostat.ro.4.res -------------------------------------------------------------------------------- /mariadb/collations/utf8-general/res01/iostat.ro.64.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tempesta-tech/blog/HEAD/mariadb/collations/utf8-general/res01/iostat.ro.64.res -------------------------------------------------------------------------------- /mariadb/collations/utf8-general/res01/iostat.ro.8.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tempesta-tech/blog/HEAD/mariadb/collations/utf8-general/res01/iostat.ro.8.res -------------------------------------------------------------------------------- /mariadb/collations/utf8-general/res02/cheetah02.err: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tempesta-tech/blog/HEAD/mariadb/collations/utf8-general/res02/cheetah02.err -------------------------------------------------------------------------------- /mariadb/collations/utf8-general/res02/iostat.ro.1.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tempesta-tech/blog/HEAD/mariadb/collations/utf8-general/res02/iostat.ro.1.res -------------------------------------------------------------------------------- /mariadb/collations/utf8-general/res02/iostat.ro.16.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tempesta-tech/blog/HEAD/mariadb/collations/utf8-general/res02/iostat.ro.16.res -------------------------------------------------------------------------------- /mariadb/collations/utf8-general/res02/iostat.ro.2.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tempesta-tech/blog/HEAD/mariadb/collations/utf8-general/res02/iostat.ro.2.res -------------------------------------------------------------------------------- /mariadb/collations/utf8-general/res02/iostat.ro.32.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tempesta-tech/blog/HEAD/mariadb/collations/utf8-general/res02/iostat.ro.32.res -------------------------------------------------------------------------------- /mariadb/collations/utf8-general/res02/iostat.ro.4.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tempesta-tech/blog/HEAD/mariadb/collations/utf8-general/res02/iostat.ro.4.res -------------------------------------------------------------------------------- /mariadb/collations/utf8-general/res02/iostat.ro.64.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tempesta-tech/blog/HEAD/mariadb/collations/utf8-general/res02/iostat.ro.64.res -------------------------------------------------------------------------------- /mariadb/collations/utf8-general/res02/iostat.ro.8.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tempesta-tech/blog/HEAD/mariadb/collations/utf8-general/res02/iostat.ro.8.res -------------------------------------------------------------------------------- /mariadb/collations/utf8-general/res03/cheetah02.err: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tempesta-tech/blog/HEAD/mariadb/collations/utf8-general/res03/cheetah02.err -------------------------------------------------------------------------------- /mariadb/collations/utf8-general/res03/iostat.ro.1.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tempesta-tech/blog/HEAD/mariadb/collations/utf8-general/res03/iostat.ro.1.res -------------------------------------------------------------------------------- /mariadb/collations/utf8-general/res03/iostat.ro.16.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tempesta-tech/blog/HEAD/mariadb/collations/utf8-general/res03/iostat.ro.16.res -------------------------------------------------------------------------------- /mariadb/collations/utf8-general/res03/iostat.ro.2.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tempesta-tech/blog/HEAD/mariadb/collations/utf8-general/res03/iostat.ro.2.res -------------------------------------------------------------------------------- /mariadb/collations/utf8-general/res03/iostat.ro.32.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tempesta-tech/blog/HEAD/mariadb/collations/utf8-general/res03/iostat.ro.32.res -------------------------------------------------------------------------------- /mariadb/collations/utf8-general/res03/iostat.ro.4.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tempesta-tech/blog/HEAD/mariadb/collations/utf8-general/res03/iostat.ro.4.res -------------------------------------------------------------------------------- /mariadb/collations/utf8-general/res03/iostat.ro.64.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tempesta-tech/blog/HEAD/mariadb/collations/utf8-general/res03/iostat.ro.64.res -------------------------------------------------------------------------------- /mariadb/collations/utf8-general/res03/iostat.ro.8.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tempesta-tech/blog/HEAD/mariadb/collations/utf8-general/res03/iostat.ro.8.res -------------------------------------------------------------------------------- /mariadb/collations/utf8-general/res04/cheetah02.err: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tempesta-tech/blog/HEAD/mariadb/collations/utf8-general/res04/cheetah02.err -------------------------------------------------------------------------------- /mariadb/collations/utf8-general/res04/iostat.ro.1.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tempesta-tech/blog/HEAD/mariadb/collations/utf8-general/res04/iostat.ro.1.res -------------------------------------------------------------------------------- /mariadb/collations/utf8-general/res04/iostat.ro.16.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tempesta-tech/blog/HEAD/mariadb/collations/utf8-general/res04/iostat.ro.16.res -------------------------------------------------------------------------------- /mariadb/collations/utf8-general/res04/iostat.ro.2.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tempesta-tech/blog/HEAD/mariadb/collations/utf8-general/res04/iostat.ro.2.res -------------------------------------------------------------------------------- /mariadb/collations/utf8-general/res04/iostat.ro.32.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tempesta-tech/blog/HEAD/mariadb/collations/utf8-general/res04/iostat.ro.32.res -------------------------------------------------------------------------------- /mariadb/collations/utf8-general/res04/iostat.ro.4.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tempesta-tech/blog/HEAD/mariadb/collations/utf8-general/res04/iostat.ro.4.res -------------------------------------------------------------------------------- /mariadb/collations/utf8-general/res04/iostat.ro.64.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tempesta-tech/blog/HEAD/mariadb/collations/utf8-general/res04/iostat.ro.64.res -------------------------------------------------------------------------------- /mariadb/collations/utf8-general/res05/cheetah02.err: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tempesta-tech/blog/HEAD/mariadb/collations/utf8-general/res05/cheetah02.err -------------------------------------------------------------------------------- /mariadb/collations/utf8-general/res06/cheetah02.err: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tempesta-tech/blog/HEAD/mariadb/collations/utf8-general/res06/cheetah02.err -------------------------------------------------------------------------------- /mariadb/collations/utf8-general/run.mysqld: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tempesta-tech/blog/HEAD/mariadb/collations/utf8-general/run.mysqld -------------------------------------------------------------------------------- /mariadb/collations/utf8-general/run.sysbench: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tempesta-tech/blog/HEAD/mariadb/collations/utf8-general/run.sysbench -------------------------------------------------------------------------------- /mariadb/collations/utf8-general/runme.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tempesta-tech/blog/HEAD/mariadb/collations/utf8-general/runme.sh -------------------------------------------------------------------------------- /mariadb/collations/utf8-general/server.01: -------------------------------------------------------------------------------- 1 | mariadb-10.1.36 2 | -------------------------------------------------------------------------------- /mariadb/collations/utf8-general/server.02: -------------------------------------------------------------------------------- 1 | mariadb-10.2.18 2 | -------------------------------------------------------------------------------- /mariadb/collations/utf8-general/server.03: -------------------------------------------------------------------------------- 1 | mariadb-10.3.9 2 | -------------------------------------------------------------------------------- /mariadb/collations/utf8-general/server.04: -------------------------------------------------------------------------------- 1 | mysql-5.6.36 2 | -------------------------------------------------------------------------------- /mariadb/collations/utf8-general/server.05: -------------------------------------------------------------------------------- 1 | mysql-5.7.21 2 | -------------------------------------------------------------------------------- /mariadb/collations/utf8-general/server.06: -------------------------------------------------------------------------------- 1 | mysql-8.0.11 2 | -------------------------------------------------------------------------------- /mariadb/collations/utf8-unicode/DESC: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tempesta-tech/blog/HEAD/mariadb/collations/utf8-unicode/DESC -------------------------------------------------------------------------------- /mariadb/collations/utf8-unicode/QPS.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tempesta-tech/blog/HEAD/mariadb/collations/utf8-unicode/QPS.dat -------------------------------------------------------------------------------- /mariadb/collations/utf8-unicode/RT_95.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tempesta-tech/blog/HEAD/mariadb/collations/utf8-unicode/RT_95.dat -------------------------------------------------------------------------------- /mariadb/collations/utf8-unicode/RT_avg.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tempesta-tech/blog/HEAD/mariadb/collations/utf8-unicode/RT_avg.dat -------------------------------------------------------------------------------- /mariadb/collations/utf8-unicode/collect.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tempesta-tech/blog/HEAD/mariadb/collations/utf8-unicode/collect.pl -------------------------------------------------------------------------------- /mariadb/collations/utf8-unicode/config.05: -------------------------------------------------------------------------------- 1 | IS_MYSQL=1 2 | -------------------------------------------------------------------------------- /mariadb/collations/utf8-unicode/config.06: -------------------------------------------------------------------------------- 1 | IS_MYSQL=1 2 | -------------------------------------------------------------------------------- /mariadb/collations/utf8-unicode/config.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tempesta-tech/blog/HEAD/mariadb/collations/utf8-unicode/config.sh -------------------------------------------------------------------------------- /mariadb/collations/utf8-unicode/lua/common.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tempesta-tech/blog/HEAD/mariadb/collations/utf8-unicode/lua/common.lua -------------------------------------------------------------------------------- /mariadb/collations/utf8-unicode/lua/oltp.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tempesta-tech/blog/HEAD/mariadb/collations/utf8-unicode/lua/oltp.lua -------------------------------------------------------------------------------- /mariadb/collations/utf8-unicode/my.cnf.01: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tempesta-tech/blog/HEAD/mariadb/collations/utf8-unicode/my.cnf.01 -------------------------------------------------------------------------------- /mariadb/collations/utf8-unicode/my.cnf.02: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tempesta-tech/blog/HEAD/mariadb/collations/utf8-unicode/my.cnf.02 -------------------------------------------------------------------------------- /mariadb/collations/utf8-unicode/my.cnf.03: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tempesta-tech/blog/HEAD/mariadb/collations/utf8-unicode/my.cnf.03 -------------------------------------------------------------------------------- /mariadb/collations/utf8-unicode/my.cnf.04: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tempesta-tech/blog/HEAD/mariadb/collations/utf8-unicode/my.cnf.04 -------------------------------------------------------------------------------- /mariadb/collations/utf8-unicode/my.cnf.05: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tempesta-tech/blog/HEAD/mariadb/collations/utf8-unicode/my.cnf.05 -------------------------------------------------------------------------------- /mariadb/collations/utf8-unicode/my.cnf.06: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tempesta-tech/blog/HEAD/mariadb/collations/utf8-unicode/my.cnf.06 -------------------------------------------------------------------------------- /mariadb/collations/utf8-unicode/res01/cheetah02.err: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tempesta-tech/blog/HEAD/mariadb/collations/utf8-unicode/res01/cheetah02.err -------------------------------------------------------------------------------- /mariadb/collations/utf8-unicode/res02/cheetah02.err: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tempesta-tech/blog/HEAD/mariadb/collations/utf8-unicode/res02/cheetah02.err -------------------------------------------------------------------------------- /mariadb/collations/utf8-unicode/res03/cheetah02.err: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tempesta-tech/blog/HEAD/mariadb/collations/utf8-unicode/res03/cheetah02.err -------------------------------------------------------------------------------- /mariadb/collations/utf8-unicode/res04/cheetah02.err: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tempesta-tech/blog/HEAD/mariadb/collations/utf8-unicode/res04/cheetah02.err -------------------------------------------------------------------------------- /mariadb/collations/utf8-unicode/res05/cheetah02.err: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tempesta-tech/blog/HEAD/mariadb/collations/utf8-unicode/res05/cheetah02.err -------------------------------------------------------------------------------- /mariadb/collations/utf8-unicode/res06/cheetah02.err: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tempesta-tech/blog/HEAD/mariadb/collations/utf8-unicode/res06/cheetah02.err -------------------------------------------------------------------------------- /mariadb/collations/utf8-unicode/run.mysqld: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tempesta-tech/blog/HEAD/mariadb/collations/utf8-unicode/run.mysqld -------------------------------------------------------------------------------- /mariadb/collations/utf8-unicode/run.sysbench: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tempesta-tech/blog/HEAD/mariadb/collations/utf8-unicode/run.sysbench -------------------------------------------------------------------------------- /mariadb/collations/utf8-unicode/runme.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tempesta-tech/blog/HEAD/mariadb/collations/utf8-unicode/runme.sh -------------------------------------------------------------------------------- /mariadb/collations/utf8-unicode/server.01: -------------------------------------------------------------------------------- 1 | mariadb-10.1.36 2 | -------------------------------------------------------------------------------- /mariadb/collations/utf8-unicode/server.02: -------------------------------------------------------------------------------- 1 | mariadb-10.2.18 2 | -------------------------------------------------------------------------------- /mariadb/collations/utf8-unicode/server.03: -------------------------------------------------------------------------------- 1 | mariadb-10.3.9 2 | -------------------------------------------------------------------------------- /mariadb/collations/utf8-unicode/server.04: -------------------------------------------------------------------------------- 1 | mysql-5.6.36 2 | -------------------------------------------------------------------------------- /mariadb/collations/utf8-unicode/server.05: -------------------------------------------------------------------------------- 1 | mysql-5.7.21 2 | -------------------------------------------------------------------------------- /mariadb/collations/utf8-unicode/server.06: -------------------------------------------------------------------------------- 1 | mysql-8.0.11 2 | -------------------------------------------------------------------------------- /mariadb/collations/utf8mb4-general/DESC: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tempesta-tech/blog/HEAD/mariadb/collations/utf8mb4-general/DESC -------------------------------------------------------------------------------- /mariadb/collations/utf8mb4-general/QPS.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tempesta-tech/blog/HEAD/mariadb/collations/utf8mb4-general/QPS.dat -------------------------------------------------------------------------------- /mariadb/collations/utf8mb4-general/RT_95.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tempesta-tech/blog/HEAD/mariadb/collations/utf8mb4-general/RT_95.dat -------------------------------------------------------------------------------- /mariadb/collations/utf8mb4-general/RT_avg.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tempesta-tech/blog/HEAD/mariadb/collations/utf8mb4-general/RT_avg.dat -------------------------------------------------------------------------------- /mariadb/collations/utf8mb4-general/collect.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tempesta-tech/blog/HEAD/mariadb/collations/utf8mb4-general/collect.pl -------------------------------------------------------------------------------- /mariadb/collations/utf8mb4-general/config.05: -------------------------------------------------------------------------------- 1 | IS_MYSQL=1 2 | -------------------------------------------------------------------------------- /mariadb/collations/utf8mb4-general/config.06: -------------------------------------------------------------------------------- 1 | IS_MYSQL=1 2 | -------------------------------------------------------------------------------- /mariadb/collations/utf8mb4-general/config.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tempesta-tech/blog/HEAD/mariadb/collations/utf8mb4-general/config.sh -------------------------------------------------------------------------------- /mariadb/collations/utf8mb4-general/lua/common.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tempesta-tech/blog/HEAD/mariadb/collations/utf8mb4-general/lua/common.lua -------------------------------------------------------------------------------- /mariadb/collations/utf8mb4-general/lua/oltp.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tempesta-tech/blog/HEAD/mariadb/collations/utf8mb4-general/lua/oltp.lua -------------------------------------------------------------------------------- /mariadb/collations/utf8mb4-general/my.cnf.01: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tempesta-tech/blog/HEAD/mariadb/collations/utf8mb4-general/my.cnf.01 -------------------------------------------------------------------------------- /mariadb/collations/utf8mb4-general/my.cnf.02: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tempesta-tech/blog/HEAD/mariadb/collations/utf8mb4-general/my.cnf.02 -------------------------------------------------------------------------------- /mariadb/collations/utf8mb4-general/my.cnf.03: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tempesta-tech/blog/HEAD/mariadb/collations/utf8mb4-general/my.cnf.03 -------------------------------------------------------------------------------- /mariadb/collations/utf8mb4-general/my.cnf.04: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tempesta-tech/blog/HEAD/mariadb/collations/utf8mb4-general/my.cnf.04 -------------------------------------------------------------------------------- /mariadb/collations/utf8mb4-general/my.cnf.05: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tempesta-tech/blog/HEAD/mariadb/collations/utf8mb4-general/my.cnf.05 -------------------------------------------------------------------------------- /mariadb/collations/utf8mb4-general/my.cnf.06: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tempesta-tech/blog/HEAD/mariadb/collations/utf8mb4-general/my.cnf.06 -------------------------------------------------------------------------------- /mariadb/collations/utf8mb4-general/nohup.out: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tempesta-tech/blog/HEAD/mariadb/collations/utf8mb4-general/nohup.out -------------------------------------------------------------------------------- /mariadb/collations/utf8mb4-general/run.mysqld: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tempesta-tech/blog/HEAD/mariadb/collations/utf8mb4-general/run.mysqld -------------------------------------------------------------------------------- /mariadb/collations/utf8mb4-general/run.sysbench: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tempesta-tech/blog/HEAD/mariadb/collations/utf8mb4-general/run.sysbench -------------------------------------------------------------------------------- /mariadb/collations/utf8mb4-general/runme.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tempesta-tech/blog/HEAD/mariadb/collations/utf8mb4-general/runme.sh -------------------------------------------------------------------------------- /mariadb/collations/utf8mb4-general/server.01: -------------------------------------------------------------------------------- 1 | mariadb-10.1.36 2 | -------------------------------------------------------------------------------- /mariadb/collations/utf8mb4-general/server.02: -------------------------------------------------------------------------------- 1 | mariadb-10.2.18 2 | -------------------------------------------------------------------------------- /mariadb/collations/utf8mb4-general/server.03: -------------------------------------------------------------------------------- 1 | mariadb-10.3.9 2 | -------------------------------------------------------------------------------- /mariadb/collations/utf8mb4-general/server.04: -------------------------------------------------------------------------------- 1 | mysql-5.6.36 2 | -------------------------------------------------------------------------------- /mariadb/collations/utf8mb4-general/server.05: -------------------------------------------------------------------------------- 1 | mysql-5.7.21 2 | -------------------------------------------------------------------------------- /mariadb/collations/utf8mb4-general/server.06: -------------------------------------------------------------------------------- 1 | mysql-8.0.11 2 | -------------------------------------------------------------------------------- /mariadb/collations/utf8mb4-unicode/DESC: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tempesta-tech/blog/HEAD/mariadb/collations/utf8mb4-unicode/DESC -------------------------------------------------------------------------------- /mariadb/collations/utf8mb4-unicode/QPS.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tempesta-tech/blog/HEAD/mariadb/collations/utf8mb4-unicode/QPS.dat -------------------------------------------------------------------------------- /mariadb/collations/utf8mb4-unicode/RT_95.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tempesta-tech/blog/HEAD/mariadb/collations/utf8mb4-unicode/RT_95.dat -------------------------------------------------------------------------------- /mariadb/collations/utf8mb4-unicode/RT_avg.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tempesta-tech/blog/HEAD/mariadb/collations/utf8mb4-unicode/RT_avg.dat -------------------------------------------------------------------------------- /mariadb/collations/utf8mb4-unicode/collect.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tempesta-tech/blog/HEAD/mariadb/collations/utf8mb4-unicode/collect.pl -------------------------------------------------------------------------------- /mariadb/collations/utf8mb4-unicode/config.05: -------------------------------------------------------------------------------- 1 | IS_MYSQL=1 2 | -------------------------------------------------------------------------------- /mariadb/collations/utf8mb4-unicode/config.06: -------------------------------------------------------------------------------- 1 | IS_MYSQL=1 2 | -------------------------------------------------------------------------------- /mariadb/collations/utf8mb4-unicode/config.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tempesta-tech/blog/HEAD/mariadb/collations/utf8mb4-unicode/config.sh -------------------------------------------------------------------------------- /mariadb/collations/utf8mb4-unicode/lua/common.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tempesta-tech/blog/HEAD/mariadb/collations/utf8mb4-unicode/lua/common.lua -------------------------------------------------------------------------------- /mariadb/collations/utf8mb4-unicode/lua/oltp.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tempesta-tech/blog/HEAD/mariadb/collations/utf8mb4-unicode/lua/oltp.lua -------------------------------------------------------------------------------- /mariadb/collations/utf8mb4-unicode/my.cnf.01: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tempesta-tech/blog/HEAD/mariadb/collations/utf8mb4-unicode/my.cnf.01 -------------------------------------------------------------------------------- /mariadb/collations/utf8mb4-unicode/my.cnf.02: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tempesta-tech/blog/HEAD/mariadb/collations/utf8mb4-unicode/my.cnf.02 -------------------------------------------------------------------------------- /mariadb/collations/utf8mb4-unicode/my.cnf.03: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tempesta-tech/blog/HEAD/mariadb/collations/utf8mb4-unicode/my.cnf.03 -------------------------------------------------------------------------------- /mariadb/collations/utf8mb4-unicode/my.cnf.04: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tempesta-tech/blog/HEAD/mariadb/collations/utf8mb4-unicode/my.cnf.04 -------------------------------------------------------------------------------- /mariadb/collations/utf8mb4-unicode/my.cnf.05: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tempesta-tech/blog/HEAD/mariadb/collations/utf8mb4-unicode/my.cnf.05 -------------------------------------------------------------------------------- /mariadb/collations/utf8mb4-unicode/my.cnf.06: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tempesta-tech/blog/HEAD/mariadb/collations/utf8mb4-unicode/my.cnf.06 -------------------------------------------------------------------------------- /mariadb/collations/utf8mb4-unicode/run.mysqld: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tempesta-tech/blog/HEAD/mariadb/collations/utf8mb4-unicode/run.mysqld -------------------------------------------------------------------------------- /mariadb/collations/utf8mb4-unicode/run.sysbench: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tempesta-tech/blog/HEAD/mariadb/collations/utf8mb4-unicode/run.sysbench -------------------------------------------------------------------------------- /mariadb/collations/utf8mb4-unicode/runme.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tempesta-tech/blog/HEAD/mariadb/collations/utf8mb4-unicode/runme.sh -------------------------------------------------------------------------------- /mariadb/collations/utf8mb4-unicode/server.01: -------------------------------------------------------------------------------- 1 | mariadb-10.1.36 2 | -------------------------------------------------------------------------------- /mariadb/collations/utf8mb4-unicode/server.02: -------------------------------------------------------------------------------- 1 | mariadb-10.2.18 2 | -------------------------------------------------------------------------------- /mariadb/collations/utf8mb4-unicode/server.03: -------------------------------------------------------------------------------- 1 | mariadb-10.3.9 2 | -------------------------------------------------------------------------------- /mariadb/collations/utf8mb4-unicode/server.04: -------------------------------------------------------------------------------- 1 | mysql-5.6.36 2 | -------------------------------------------------------------------------------- /mariadb/collations/utf8mb4-unicode/server.05: -------------------------------------------------------------------------------- 1 | mysql-5.7.21 2 | -------------------------------------------------------------------------------- /mariadb/collations/utf8mb4-unicode/server.06: -------------------------------------------------------------------------------- 1 | mysql-8.0.11 2 | -------------------------------------------------------------------------------- /mariadb/collations2/.DESC.swp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tempesta-tech/blog/HEAD/mariadb/collations2/.DESC.swp -------------------------------------------------------------------------------- /mariadb/collations2/DESC: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tempesta-tech/blog/HEAD/mariadb/collations2/DESC -------------------------------------------------------------------------------- /mariadb/collations2/DESC.WL: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tempesta-tech/blog/HEAD/mariadb/collations2/DESC.WL -------------------------------------------------------------------------------- /mariadb/collations2/QPS.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tempesta-tech/blog/HEAD/mariadb/collations2/QPS.dat -------------------------------------------------------------------------------- /mariadb/collations2/RT_95.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tempesta-tech/blog/HEAD/mariadb/collations2/RT_95.dat -------------------------------------------------------------------------------- /mariadb/collations2/RT_avg.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tempesta-tech/blog/HEAD/mariadb/collations2/RT_avg.dat -------------------------------------------------------------------------------- /mariadb/collations2/collations.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tempesta-tech/blog/HEAD/mariadb/collations2/collations.pdf -------------------------------------------------------------------------------- /mariadb/collations2/collect.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tempesta-tech/blog/HEAD/mariadb/collations2/collect.pl -------------------------------------------------------------------------------- /mariadb/collations2/config.01: -------------------------------------------------------------------------------- 1 | CREATE="CHARACTER SET latin1" 2 | -------------------------------------------------------------------------------- /mariadb/collations2/config.02: -------------------------------------------------------------------------------- 1 | CREATE="CHARACTER SET utf8" 2 | -------------------------------------------------------------------------------- /mariadb/collations2/config.03: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tempesta-tech/blog/HEAD/mariadb/collations2/config.03 -------------------------------------------------------------------------------- /mariadb/collations2/config.04: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tempesta-tech/blog/HEAD/mariadb/collations2/config.04 -------------------------------------------------------------------------------- /mariadb/collations2/config.05: -------------------------------------------------------------------------------- 1 | CREATE="CHARACTER SET utf8mb4" 2 | -------------------------------------------------------------------------------- /mariadb/collations2/config.06: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tempesta-tech/blog/HEAD/mariadb/collations2/config.06 -------------------------------------------------------------------------------- /mariadb/collations2/config.07: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tempesta-tech/blog/HEAD/mariadb/collations2/config.07 -------------------------------------------------------------------------------- /mariadb/collations2/config.10: -------------------------------------------------------------------------------- 1 | IS_MYSQL=1 2 | CREATE="CHARACTER SET latin1" 3 | -------------------------------------------------------------------------------- /mariadb/collations2/config.11: -------------------------------------------------------------------------------- 1 | IS_MYSQL=1 2 | CREATE="CHARACTER SET utf8" 3 | -------------------------------------------------------------------------------- /mariadb/collations2/config.12: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tempesta-tech/blog/HEAD/mariadb/collations2/config.12 -------------------------------------------------------------------------------- /mariadb/collations2/config.13: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tempesta-tech/blog/HEAD/mariadb/collations2/config.13 -------------------------------------------------------------------------------- /mariadb/collations2/config.14: -------------------------------------------------------------------------------- 1 | IS_MYSQL=1 2 | CREATE="CHARACTER SET utf8mb4" 3 | -------------------------------------------------------------------------------- /mariadb/collations2/config.15: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tempesta-tech/blog/HEAD/mariadb/collations2/config.15 -------------------------------------------------------------------------------- /mariadb/collations2/config.16: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tempesta-tech/blog/HEAD/mariadb/collations2/config.16 -------------------------------------------------------------------------------- /mariadb/collations2/config.20: -------------------------------------------------------------------------------- 1 | IS_MYSQL=1 2 | CREATE="CHARACTER SET latin1" 3 | -------------------------------------------------------------------------------- /mariadb/collations2/config.21: -------------------------------------------------------------------------------- 1 | IS_MYSQL=1 2 | CREATE="CHARACTER SET utf8" 3 | -------------------------------------------------------------------------------- /mariadb/collations2/config.22: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tempesta-tech/blog/HEAD/mariadb/collations2/config.22 -------------------------------------------------------------------------------- /mariadb/collations2/config.23: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tempesta-tech/blog/HEAD/mariadb/collations2/config.23 -------------------------------------------------------------------------------- /mariadb/collations2/config.24: -------------------------------------------------------------------------------- 1 | IS_MYSQL=1 2 | CREATE="CHARACTER SET utf8mb4" 3 | -------------------------------------------------------------------------------- /mariadb/collations2/config.25: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tempesta-tech/blog/HEAD/mariadb/collations2/config.25 -------------------------------------------------------------------------------- /mariadb/collations2/config.26: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tempesta-tech/blog/HEAD/mariadb/collations2/config.26 -------------------------------------------------------------------------------- /mariadb/collations2/config.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tempesta-tech/blog/HEAD/mariadb/collations2/config.sh -------------------------------------------------------------------------------- /mariadb/collations2/gen_graph.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tempesta-tech/blog/HEAD/mariadb/collations2/gen_graph.sh -------------------------------------------------------------------------------- /mariadb/collations2/my.cnf.01: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tempesta-tech/blog/HEAD/mariadb/collations2/my.cnf.01 -------------------------------------------------------------------------------- /mariadb/collations2/my.cnf.02: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tempesta-tech/blog/HEAD/mariadb/collations2/my.cnf.02 -------------------------------------------------------------------------------- /mariadb/collations2/my.cnf.03: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tempesta-tech/blog/HEAD/mariadb/collations2/my.cnf.03 -------------------------------------------------------------------------------- /mariadb/collations2/my.cnf.04: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tempesta-tech/blog/HEAD/mariadb/collations2/my.cnf.04 -------------------------------------------------------------------------------- /mariadb/collations2/my.cnf.05: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tempesta-tech/blog/HEAD/mariadb/collations2/my.cnf.05 -------------------------------------------------------------------------------- /mariadb/collations2/my.cnf.06: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tempesta-tech/blog/HEAD/mariadb/collations2/my.cnf.06 -------------------------------------------------------------------------------- /mariadb/collations2/my.cnf.07: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tempesta-tech/blog/HEAD/mariadb/collations2/my.cnf.07 -------------------------------------------------------------------------------- /mariadb/collations2/my.cnf.10: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tempesta-tech/blog/HEAD/mariadb/collations2/my.cnf.10 -------------------------------------------------------------------------------- /mariadb/collations2/my.cnf.11: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tempesta-tech/blog/HEAD/mariadb/collations2/my.cnf.11 -------------------------------------------------------------------------------- /mariadb/collations2/my.cnf.12: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tempesta-tech/blog/HEAD/mariadb/collations2/my.cnf.12 -------------------------------------------------------------------------------- /mariadb/collations2/my.cnf.13: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tempesta-tech/blog/HEAD/mariadb/collations2/my.cnf.13 -------------------------------------------------------------------------------- /mariadb/collations2/my.cnf.14: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tempesta-tech/blog/HEAD/mariadb/collations2/my.cnf.14 -------------------------------------------------------------------------------- /mariadb/collations2/my.cnf.15: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tempesta-tech/blog/HEAD/mariadb/collations2/my.cnf.15 -------------------------------------------------------------------------------- /mariadb/collations2/my.cnf.16: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tempesta-tech/blog/HEAD/mariadb/collations2/my.cnf.16 -------------------------------------------------------------------------------- /mariadb/collations2/my.cnf.20: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tempesta-tech/blog/HEAD/mariadb/collations2/my.cnf.20 -------------------------------------------------------------------------------- /mariadb/collations2/my.cnf.21: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tempesta-tech/blog/HEAD/mariadb/collations2/my.cnf.21 -------------------------------------------------------------------------------- /mariadb/collations2/my.cnf.22: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tempesta-tech/blog/HEAD/mariadb/collations2/my.cnf.22 -------------------------------------------------------------------------------- /mariadb/collations2/my.cnf.23: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tempesta-tech/blog/HEAD/mariadb/collations2/my.cnf.23 -------------------------------------------------------------------------------- /mariadb/collations2/my.cnf.24: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tempesta-tech/blog/HEAD/mariadb/collations2/my.cnf.24 -------------------------------------------------------------------------------- /mariadb/collations2/my.cnf.25: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tempesta-tech/blog/HEAD/mariadb/collations2/my.cnf.25 -------------------------------------------------------------------------------- /mariadb/collations2/my.cnf.26: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tempesta-tech/blog/HEAD/mariadb/collations2/my.cnf.26 -------------------------------------------------------------------------------- /mariadb/collations2/oltp_common.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tempesta-tech/blog/HEAD/mariadb/collations2/oltp_common.lua -------------------------------------------------------------------------------- /mariadb/collations2/oltp_range.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tempesta-tech/blog/HEAD/mariadb/collations2/oltp_range.lua -------------------------------------------------------------------------------- /mariadb/collations2/res01/iostat.range.1.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tempesta-tech/blog/HEAD/mariadb/collations2/res01/iostat.range.1.txt -------------------------------------------------------------------------------- /mariadb/collations2/res01/iostat.range.128.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tempesta-tech/blog/HEAD/mariadb/collations2/res01/iostat.range.128.txt -------------------------------------------------------------------------------- /mariadb/collations2/res01/iostat.range.16.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tempesta-tech/blog/HEAD/mariadb/collations2/res01/iostat.range.16.txt -------------------------------------------------------------------------------- /mariadb/collations2/res01/iostat.range.256.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tempesta-tech/blog/HEAD/mariadb/collations2/res01/iostat.range.256.txt -------------------------------------------------------------------------------- /mariadb/collations2/res01/iostat.range.32.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tempesta-tech/blog/HEAD/mariadb/collations2/res01/iostat.range.32.txt -------------------------------------------------------------------------------- /mariadb/collations2/res01/iostat.range.64.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tempesta-tech/blog/HEAD/mariadb/collations2/res01/iostat.range.64.txt -------------------------------------------------------------------------------- /mariadb/collations2/res01/iostat.range.8.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tempesta-tech/blog/HEAD/mariadb/collations2/res01/iostat.range.8.txt -------------------------------------------------------------------------------- /mariadb/collations2/res01/load.sysbench.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tempesta-tech/blog/HEAD/mariadb/collations2/res01/load.sysbench.txt -------------------------------------------------------------------------------- /mariadb/collations2/res01/range.1.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tempesta-tech/blog/HEAD/mariadb/collations2/res01/range.1.res -------------------------------------------------------------------------------- /mariadb/collations2/res01/range.128.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tempesta-tech/blog/HEAD/mariadb/collations2/res01/range.128.res -------------------------------------------------------------------------------- /mariadb/collations2/res01/range.16.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tempesta-tech/blog/HEAD/mariadb/collations2/res01/range.16.res -------------------------------------------------------------------------------- /mariadb/collations2/res01/range.256.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tempesta-tech/blog/HEAD/mariadb/collations2/res01/range.256.res -------------------------------------------------------------------------------- /mariadb/collations2/res01/range.32.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tempesta-tech/blog/HEAD/mariadb/collations2/res01/range.32.res -------------------------------------------------------------------------------- /mariadb/collations2/res01/range.64.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tempesta-tech/blog/HEAD/mariadb/collations2/res01/range.64.res -------------------------------------------------------------------------------- /mariadb/collations2/res01/range.8.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tempesta-tech/blog/HEAD/mariadb/collations2/res01/range.8.res -------------------------------------------------------------------------------- /mariadb/collations2/res01/show.table.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tempesta-tech/blog/HEAD/mariadb/collations2/res01/show.table.txt -------------------------------------------------------------------------------- /mariadb/collations2/res02/iostat.range.1.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tempesta-tech/blog/HEAD/mariadb/collations2/res02/iostat.range.1.txt -------------------------------------------------------------------------------- /mariadb/collations2/res02/iostat.range.128.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tempesta-tech/blog/HEAD/mariadb/collations2/res02/iostat.range.128.txt -------------------------------------------------------------------------------- /mariadb/collations2/res02/iostat.range.16.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tempesta-tech/blog/HEAD/mariadb/collations2/res02/iostat.range.16.txt -------------------------------------------------------------------------------- /mariadb/collations2/res02/iostat.range.256.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tempesta-tech/blog/HEAD/mariadb/collations2/res02/iostat.range.256.txt -------------------------------------------------------------------------------- /mariadb/collations2/res02/iostat.range.32.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tempesta-tech/blog/HEAD/mariadb/collations2/res02/iostat.range.32.txt -------------------------------------------------------------------------------- /mariadb/collations2/res02/iostat.range.64.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tempesta-tech/blog/HEAD/mariadb/collations2/res02/iostat.range.64.txt -------------------------------------------------------------------------------- /mariadb/collations2/res02/iostat.range.8.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tempesta-tech/blog/HEAD/mariadb/collations2/res02/iostat.range.8.txt -------------------------------------------------------------------------------- /mariadb/collations2/res02/load.sysbench.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tempesta-tech/blog/HEAD/mariadb/collations2/res02/load.sysbench.txt -------------------------------------------------------------------------------- /mariadb/collations2/res02/range.1.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tempesta-tech/blog/HEAD/mariadb/collations2/res02/range.1.res -------------------------------------------------------------------------------- /mariadb/collations2/res02/range.128.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tempesta-tech/blog/HEAD/mariadb/collations2/res02/range.128.res -------------------------------------------------------------------------------- /mariadb/collations2/res02/range.16.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tempesta-tech/blog/HEAD/mariadb/collations2/res02/range.16.res -------------------------------------------------------------------------------- /mariadb/collations2/res02/range.256.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tempesta-tech/blog/HEAD/mariadb/collations2/res02/range.256.res -------------------------------------------------------------------------------- /mariadb/collations2/res02/range.32.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tempesta-tech/blog/HEAD/mariadb/collations2/res02/range.32.res -------------------------------------------------------------------------------- /mariadb/collations2/res02/range.64.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tempesta-tech/blog/HEAD/mariadb/collations2/res02/range.64.res -------------------------------------------------------------------------------- /mariadb/collations2/res02/range.8.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tempesta-tech/blog/HEAD/mariadb/collations2/res02/range.8.res -------------------------------------------------------------------------------- /mariadb/collations2/res02/show.table.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tempesta-tech/blog/HEAD/mariadb/collations2/res02/show.table.txt -------------------------------------------------------------------------------- /mariadb/collations2/res03/iostat.range.1.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tempesta-tech/blog/HEAD/mariadb/collations2/res03/iostat.range.1.txt -------------------------------------------------------------------------------- /mariadb/collations2/res03/iostat.range.128.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tempesta-tech/blog/HEAD/mariadb/collations2/res03/iostat.range.128.txt -------------------------------------------------------------------------------- /mariadb/collations2/res03/iostat.range.16.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tempesta-tech/blog/HEAD/mariadb/collations2/res03/iostat.range.16.txt -------------------------------------------------------------------------------- /mariadb/collations2/res03/iostat.range.256.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tempesta-tech/blog/HEAD/mariadb/collations2/res03/iostat.range.256.txt -------------------------------------------------------------------------------- /mariadb/collations2/res03/iostat.range.32.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tempesta-tech/blog/HEAD/mariadb/collations2/res03/iostat.range.32.txt -------------------------------------------------------------------------------- /mariadb/collations2/res03/iostat.range.64.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tempesta-tech/blog/HEAD/mariadb/collations2/res03/iostat.range.64.txt -------------------------------------------------------------------------------- /mariadb/collations2/res03/iostat.range.8.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tempesta-tech/blog/HEAD/mariadb/collations2/res03/iostat.range.8.txt -------------------------------------------------------------------------------- /mariadb/collations2/res03/load.sysbench.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tempesta-tech/blog/HEAD/mariadb/collations2/res03/load.sysbench.txt -------------------------------------------------------------------------------- /mariadb/collations2/res03/range.1.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tempesta-tech/blog/HEAD/mariadb/collations2/res03/range.1.res -------------------------------------------------------------------------------- /mariadb/collations2/res03/range.128.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tempesta-tech/blog/HEAD/mariadb/collations2/res03/range.128.res -------------------------------------------------------------------------------- /mariadb/collations2/res03/range.16.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tempesta-tech/blog/HEAD/mariadb/collations2/res03/range.16.res -------------------------------------------------------------------------------- /mariadb/collations2/res03/range.256.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tempesta-tech/blog/HEAD/mariadb/collations2/res03/range.256.res -------------------------------------------------------------------------------- /mariadb/collations2/res03/range.32.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tempesta-tech/blog/HEAD/mariadb/collations2/res03/range.32.res -------------------------------------------------------------------------------- /mariadb/collations2/res03/range.64.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tempesta-tech/blog/HEAD/mariadb/collations2/res03/range.64.res -------------------------------------------------------------------------------- /mariadb/collations2/res03/range.8.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tempesta-tech/blog/HEAD/mariadb/collations2/res03/range.8.res -------------------------------------------------------------------------------- /mariadb/collations2/res03/show.table.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tempesta-tech/blog/HEAD/mariadb/collations2/res03/show.table.txt -------------------------------------------------------------------------------- /mariadb/collations2/res04/iostat.range.1.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tempesta-tech/blog/HEAD/mariadb/collations2/res04/iostat.range.1.txt -------------------------------------------------------------------------------- /mariadb/collations2/res04/iostat.range.128.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tempesta-tech/blog/HEAD/mariadb/collations2/res04/iostat.range.128.txt -------------------------------------------------------------------------------- /mariadb/collations2/res04/iostat.range.16.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tempesta-tech/blog/HEAD/mariadb/collations2/res04/iostat.range.16.txt -------------------------------------------------------------------------------- /mariadb/collations2/res04/iostat.range.256.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tempesta-tech/blog/HEAD/mariadb/collations2/res04/iostat.range.256.txt -------------------------------------------------------------------------------- /mariadb/collations2/res04/iostat.range.32.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tempesta-tech/blog/HEAD/mariadb/collations2/res04/iostat.range.32.txt -------------------------------------------------------------------------------- /mariadb/collations2/res04/iostat.range.64.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tempesta-tech/blog/HEAD/mariadb/collations2/res04/iostat.range.64.txt -------------------------------------------------------------------------------- /mariadb/collations2/res04/iostat.range.8.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tempesta-tech/blog/HEAD/mariadb/collations2/res04/iostat.range.8.txt -------------------------------------------------------------------------------- /mariadb/collations2/res04/load.sysbench.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tempesta-tech/blog/HEAD/mariadb/collations2/res04/load.sysbench.txt -------------------------------------------------------------------------------- /mariadb/collations2/res04/range.1.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tempesta-tech/blog/HEAD/mariadb/collations2/res04/range.1.res -------------------------------------------------------------------------------- /mariadb/collations2/res04/range.128.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tempesta-tech/blog/HEAD/mariadb/collations2/res04/range.128.res -------------------------------------------------------------------------------- /mariadb/collations2/res04/range.16.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tempesta-tech/blog/HEAD/mariadb/collations2/res04/range.16.res -------------------------------------------------------------------------------- /mariadb/collations2/res04/range.256.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tempesta-tech/blog/HEAD/mariadb/collations2/res04/range.256.res -------------------------------------------------------------------------------- /mariadb/collations2/res04/range.32.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tempesta-tech/blog/HEAD/mariadb/collations2/res04/range.32.res -------------------------------------------------------------------------------- /mariadb/collations2/res04/range.64.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tempesta-tech/blog/HEAD/mariadb/collations2/res04/range.64.res -------------------------------------------------------------------------------- /mariadb/collations2/res04/range.8.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tempesta-tech/blog/HEAD/mariadb/collations2/res04/range.8.res -------------------------------------------------------------------------------- /mariadb/collations2/res04/show.table.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tempesta-tech/blog/HEAD/mariadb/collations2/res04/show.table.txt -------------------------------------------------------------------------------- /mariadb/collations2/res05/iostat.range.1.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tempesta-tech/blog/HEAD/mariadb/collations2/res05/iostat.range.1.txt -------------------------------------------------------------------------------- /mariadb/collations2/res05/iostat.range.128.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tempesta-tech/blog/HEAD/mariadb/collations2/res05/iostat.range.128.txt -------------------------------------------------------------------------------- /mariadb/collations2/res05/iostat.range.16.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tempesta-tech/blog/HEAD/mariadb/collations2/res05/iostat.range.16.txt -------------------------------------------------------------------------------- /mariadb/collations2/res05/iostat.range.256.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tempesta-tech/blog/HEAD/mariadb/collations2/res05/iostat.range.256.txt -------------------------------------------------------------------------------- /mariadb/collations2/res05/iostat.range.32.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tempesta-tech/blog/HEAD/mariadb/collations2/res05/iostat.range.32.txt -------------------------------------------------------------------------------- /mariadb/collations2/res05/iostat.range.64.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tempesta-tech/blog/HEAD/mariadb/collations2/res05/iostat.range.64.txt -------------------------------------------------------------------------------- /mariadb/collations2/res05/iostat.range.8.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tempesta-tech/blog/HEAD/mariadb/collations2/res05/iostat.range.8.txt -------------------------------------------------------------------------------- /mariadb/collations2/res05/load.sysbench.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tempesta-tech/blog/HEAD/mariadb/collations2/res05/load.sysbench.txt -------------------------------------------------------------------------------- /mariadb/collations2/res05/range.1.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tempesta-tech/blog/HEAD/mariadb/collations2/res05/range.1.res -------------------------------------------------------------------------------- /mariadb/collations2/res05/range.128.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tempesta-tech/blog/HEAD/mariadb/collations2/res05/range.128.res -------------------------------------------------------------------------------- /mariadb/collations2/res05/range.16.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tempesta-tech/blog/HEAD/mariadb/collations2/res05/range.16.res -------------------------------------------------------------------------------- /mariadb/collations2/res05/range.256.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tempesta-tech/blog/HEAD/mariadb/collations2/res05/range.256.res -------------------------------------------------------------------------------- /mariadb/collations2/res05/range.32.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tempesta-tech/blog/HEAD/mariadb/collations2/res05/range.32.res -------------------------------------------------------------------------------- /mariadb/collations2/res05/range.64.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tempesta-tech/blog/HEAD/mariadb/collations2/res05/range.64.res -------------------------------------------------------------------------------- /mariadb/collations2/res05/range.8.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tempesta-tech/blog/HEAD/mariadb/collations2/res05/range.8.res -------------------------------------------------------------------------------- /mariadb/collations2/res05/show.table.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tempesta-tech/blog/HEAD/mariadb/collations2/res05/show.table.txt -------------------------------------------------------------------------------- /mariadb/collations2/res06/iostat.range.1.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tempesta-tech/blog/HEAD/mariadb/collations2/res06/iostat.range.1.txt -------------------------------------------------------------------------------- /mariadb/collations2/res06/iostat.range.128.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tempesta-tech/blog/HEAD/mariadb/collations2/res06/iostat.range.128.txt -------------------------------------------------------------------------------- /mariadb/collations2/res06/iostat.range.16.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tempesta-tech/blog/HEAD/mariadb/collations2/res06/iostat.range.16.txt -------------------------------------------------------------------------------- /mariadb/collations2/res06/iostat.range.256.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tempesta-tech/blog/HEAD/mariadb/collations2/res06/iostat.range.256.txt -------------------------------------------------------------------------------- /mariadb/collations2/res06/iostat.range.32.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tempesta-tech/blog/HEAD/mariadb/collations2/res06/iostat.range.32.txt -------------------------------------------------------------------------------- /mariadb/collations2/res06/iostat.range.64.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tempesta-tech/blog/HEAD/mariadb/collations2/res06/iostat.range.64.txt -------------------------------------------------------------------------------- /mariadb/collations2/res06/iostat.range.8.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tempesta-tech/blog/HEAD/mariadb/collations2/res06/iostat.range.8.txt -------------------------------------------------------------------------------- /mariadb/collations2/res06/load.sysbench.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tempesta-tech/blog/HEAD/mariadb/collations2/res06/load.sysbench.txt -------------------------------------------------------------------------------- /mariadb/collations2/res06/range.1.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tempesta-tech/blog/HEAD/mariadb/collations2/res06/range.1.res -------------------------------------------------------------------------------- /mariadb/collations2/res06/range.128.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tempesta-tech/blog/HEAD/mariadb/collations2/res06/range.128.res -------------------------------------------------------------------------------- /mariadb/collations2/res06/range.16.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tempesta-tech/blog/HEAD/mariadb/collations2/res06/range.16.res -------------------------------------------------------------------------------- /mariadb/collations2/res06/range.256.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tempesta-tech/blog/HEAD/mariadb/collations2/res06/range.256.res -------------------------------------------------------------------------------- /mariadb/collations2/res06/range.32.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tempesta-tech/blog/HEAD/mariadb/collations2/res06/range.32.res -------------------------------------------------------------------------------- /mariadb/collations2/res06/range.64.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tempesta-tech/blog/HEAD/mariadb/collations2/res06/range.64.res -------------------------------------------------------------------------------- /mariadb/collations2/res06/range.8.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tempesta-tech/blog/HEAD/mariadb/collations2/res06/range.8.res -------------------------------------------------------------------------------- /mariadb/collations2/res06/show.table.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tempesta-tech/blog/HEAD/mariadb/collations2/res06/show.table.txt -------------------------------------------------------------------------------- /mariadb/collations2/res07/iostat.range.1.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tempesta-tech/blog/HEAD/mariadb/collations2/res07/iostat.range.1.txt -------------------------------------------------------------------------------- /mariadb/collations2/res07/iostat.range.128.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tempesta-tech/blog/HEAD/mariadb/collations2/res07/iostat.range.128.txt -------------------------------------------------------------------------------- /mariadb/collations2/res07/iostat.range.16.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tempesta-tech/blog/HEAD/mariadb/collations2/res07/iostat.range.16.txt -------------------------------------------------------------------------------- /mariadb/collations2/res07/iostat.range.256.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tempesta-tech/blog/HEAD/mariadb/collations2/res07/iostat.range.256.txt -------------------------------------------------------------------------------- /mariadb/collations2/res07/iostat.range.32.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tempesta-tech/blog/HEAD/mariadb/collations2/res07/iostat.range.32.txt -------------------------------------------------------------------------------- /mariadb/collations2/res07/iostat.range.64.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tempesta-tech/blog/HEAD/mariadb/collations2/res07/iostat.range.64.txt -------------------------------------------------------------------------------- /mariadb/collations2/res07/iostat.range.8.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tempesta-tech/blog/HEAD/mariadb/collations2/res07/iostat.range.8.txt -------------------------------------------------------------------------------- /mariadb/collations2/res07/load.sysbench.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tempesta-tech/blog/HEAD/mariadb/collations2/res07/load.sysbench.txt -------------------------------------------------------------------------------- /mariadb/collations2/res07/range.1.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tempesta-tech/blog/HEAD/mariadb/collations2/res07/range.1.res -------------------------------------------------------------------------------- /mariadb/collations2/res07/range.128.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tempesta-tech/blog/HEAD/mariadb/collations2/res07/range.128.res -------------------------------------------------------------------------------- /mariadb/collations2/res07/range.16.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tempesta-tech/blog/HEAD/mariadb/collations2/res07/range.16.res -------------------------------------------------------------------------------- /mariadb/collations2/res07/range.256.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tempesta-tech/blog/HEAD/mariadb/collations2/res07/range.256.res -------------------------------------------------------------------------------- /mariadb/collations2/res07/range.32.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tempesta-tech/blog/HEAD/mariadb/collations2/res07/range.32.res -------------------------------------------------------------------------------- /mariadb/collations2/res07/range.64.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tempesta-tech/blog/HEAD/mariadb/collations2/res07/range.64.res -------------------------------------------------------------------------------- /mariadb/collations2/res07/range.8.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tempesta-tech/blog/HEAD/mariadb/collations2/res07/range.8.res -------------------------------------------------------------------------------- /mariadb/collations2/res07/show.table.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tempesta-tech/blog/HEAD/mariadb/collations2/res07/show.table.txt -------------------------------------------------------------------------------- /mariadb/collations2/res10/iostat.range.1.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tempesta-tech/blog/HEAD/mariadb/collations2/res10/iostat.range.1.txt -------------------------------------------------------------------------------- /mariadb/collations2/res10/iostat.range.128.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tempesta-tech/blog/HEAD/mariadb/collations2/res10/iostat.range.128.txt -------------------------------------------------------------------------------- /mariadb/collations2/res10/iostat.range.16.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tempesta-tech/blog/HEAD/mariadb/collations2/res10/iostat.range.16.txt -------------------------------------------------------------------------------- /mariadb/collations2/res10/iostat.range.256.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tempesta-tech/blog/HEAD/mariadb/collations2/res10/iostat.range.256.txt -------------------------------------------------------------------------------- /mariadb/collations2/res10/iostat.range.32.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tempesta-tech/blog/HEAD/mariadb/collations2/res10/iostat.range.32.txt -------------------------------------------------------------------------------- /mariadb/collations2/res10/iostat.range.64.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tempesta-tech/blog/HEAD/mariadb/collations2/res10/iostat.range.64.txt -------------------------------------------------------------------------------- /mariadb/collations2/res10/iostat.range.8.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tempesta-tech/blog/HEAD/mariadb/collations2/res10/iostat.range.8.txt -------------------------------------------------------------------------------- /mariadb/collations2/res10/load.sysbench.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tempesta-tech/blog/HEAD/mariadb/collations2/res10/load.sysbench.txt -------------------------------------------------------------------------------- /mariadb/collations2/res10/range.1.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tempesta-tech/blog/HEAD/mariadb/collations2/res10/range.1.res -------------------------------------------------------------------------------- /mariadb/collations2/res10/range.128.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tempesta-tech/blog/HEAD/mariadb/collations2/res10/range.128.res -------------------------------------------------------------------------------- /mariadb/collations2/res10/range.16.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tempesta-tech/blog/HEAD/mariadb/collations2/res10/range.16.res -------------------------------------------------------------------------------- /mariadb/collations2/res10/range.256.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tempesta-tech/blog/HEAD/mariadb/collations2/res10/range.256.res -------------------------------------------------------------------------------- /mariadb/collations2/res10/range.32.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tempesta-tech/blog/HEAD/mariadb/collations2/res10/range.32.res -------------------------------------------------------------------------------- /mariadb/collations2/res10/range.64.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tempesta-tech/blog/HEAD/mariadb/collations2/res10/range.64.res -------------------------------------------------------------------------------- /mariadb/collations2/res10/range.8.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tempesta-tech/blog/HEAD/mariadb/collations2/res10/range.8.res -------------------------------------------------------------------------------- /mariadb/collations2/res10/show.table.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tempesta-tech/blog/HEAD/mariadb/collations2/res10/show.table.txt -------------------------------------------------------------------------------- /mariadb/collations2/res11/iostat.range.1.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tempesta-tech/blog/HEAD/mariadb/collations2/res11/iostat.range.1.txt -------------------------------------------------------------------------------- /mariadb/collations2/res11/iostat.range.128.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tempesta-tech/blog/HEAD/mariadb/collations2/res11/iostat.range.128.txt -------------------------------------------------------------------------------- /mariadb/collations2/res11/iostat.range.16.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tempesta-tech/blog/HEAD/mariadb/collations2/res11/iostat.range.16.txt -------------------------------------------------------------------------------- /mariadb/collations2/res11/iostat.range.256.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tempesta-tech/blog/HEAD/mariadb/collations2/res11/iostat.range.256.txt -------------------------------------------------------------------------------- /mariadb/collations2/res11/iostat.range.32.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tempesta-tech/blog/HEAD/mariadb/collations2/res11/iostat.range.32.txt -------------------------------------------------------------------------------- /mariadb/collations2/res11/iostat.range.64.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tempesta-tech/blog/HEAD/mariadb/collations2/res11/iostat.range.64.txt -------------------------------------------------------------------------------- /mariadb/collations2/res11/iostat.range.8.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tempesta-tech/blog/HEAD/mariadb/collations2/res11/iostat.range.8.txt -------------------------------------------------------------------------------- /mariadb/collations2/res11/load.sysbench.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tempesta-tech/blog/HEAD/mariadb/collations2/res11/load.sysbench.txt -------------------------------------------------------------------------------- /mariadb/collations2/res11/range.1.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tempesta-tech/blog/HEAD/mariadb/collations2/res11/range.1.res -------------------------------------------------------------------------------- /mariadb/collations2/res11/range.128.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tempesta-tech/blog/HEAD/mariadb/collations2/res11/range.128.res -------------------------------------------------------------------------------- /mariadb/collations2/res11/range.16.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tempesta-tech/blog/HEAD/mariadb/collations2/res11/range.16.res -------------------------------------------------------------------------------- /mariadb/collations2/res11/range.256.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tempesta-tech/blog/HEAD/mariadb/collations2/res11/range.256.res -------------------------------------------------------------------------------- /mariadb/collations2/res11/range.32.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tempesta-tech/blog/HEAD/mariadb/collations2/res11/range.32.res -------------------------------------------------------------------------------- /mariadb/collations2/res11/range.64.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tempesta-tech/blog/HEAD/mariadb/collations2/res11/range.64.res -------------------------------------------------------------------------------- /mariadb/collations2/res11/range.8.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tempesta-tech/blog/HEAD/mariadb/collations2/res11/range.8.res -------------------------------------------------------------------------------- /mariadb/collations2/res11/show.table.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tempesta-tech/blog/HEAD/mariadb/collations2/res11/show.table.txt -------------------------------------------------------------------------------- /mariadb/collations2/res12/iostat.range.1.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tempesta-tech/blog/HEAD/mariadb/collations2/res12/iostat.range.1.txt -------------------------------------------------------------------------------- /mariadb/collations2/res12/iostat.range.128.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tempesta-tech/blog/HEAD/mariadb/collations2/res12/iostat.range.128.txt -------------------------------------------------------------------------------- /mariadb/collations2/res12/iostat.range.16.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tempesta-tech/blog/HEAD/mariadb/collations2/res12/iostat.range.16.txt -------------------------------------------------------------------------------- /mariadb/collations2/res12/iostat.range.256.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tempesta-tech/blog/HEAD/mariadb/collations2/res12/iostat.range.256.txt -------------------------------------------------------------------------------- /mariadb/collations2/res12/iostat.range.32.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tempesta-tech/blog/HEAD/mariadb/collations2/res12/iostat.range.32.txt -------------------------------------------------------------------------------- /mariadb/collations2/res12/iostat.range.64.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tempesta-tech/blog/HEAD/mariadb/collations2/res12/iostat.range.64.txt -------------------------------------------------------------------------------- /mariadb/collations2/res12/iostat.range.8.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tempesta-tech/blog/HEAD/mariadb/collations2/res12/iostat.range.8.txt -------------------------------------------------------------------------------- /mariadb/collations2/res12/load.sysbench.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tempesta-tech/blog/HEAD/mariadb/collations2/res12/load.sysbench.txt -------------------------------------------------------------------------------- /mariadb/collations2/res12/range.1.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tempesta-tech/blog/HEAD/mariadb/collations2/res12/range.1.res -------------------------------------------------------------------------------- /mariadb/collations2/res12/range.128.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tempesta-tech/blog/HEAD/mariadb/collations2/res12/range.128.res -------------------------------------------------------------------------------- /mariadb/collations2/res12/range.16.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tempesta-tech/blog/HEAD/mariadb/collations2/res12/range.16.res -------------------------------------------------------------------------------- /mariadb/collations2/res12/range.256.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tempesta-tech/blog/HEAD/mariadb/collations2/res12/range.256.res -------------------------------------------------------------------------------- /mariadb/collations2/res12/range.32.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tempesta-tech/blog/HEAD/mariadb/collations2/res12/range.32.res -------------------------------------------------------------------------------- /mariadb/collations2/res12/range.64.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tempesta-tech/blog/HEAD/mariadb/collations2/res12/range.64.res -------------------------------------------------------------------------------- /mariadb/collations2/res12/range.8.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tempesta-tech/blog/HEAD/mariadb/collations2/res12/range.8.res -------------------------------------------------------------------------------- /mariadb/collations2/res12/show.table.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tempesta-tech/blog/HEAD/mariadb/collations2/res12/show.table.txt -------------------------------------------------------------------------------- /mariadb/collations2/res13/iostat.range.1.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tempesta-tech/blog/HEAD/mariadb/collations2/res13/iostat.range.1.txt -------------------------------------------------------------------------------- /mariadb/collations2/res13/iostat.range.128.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tempesta-tech/blog/HEAD/mariadb/collations2/res13/iostat.range.128.txt -------------------------------------------------------------------------------- /mariadb/collations2/res13/iostat.range.16.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tempesta-tech/blog/HEAD/mariadb/collations2/res13/iostat.range.16.txt -------------------------------------------------------------------------------- /mariadb/collations2/res13/iostat.range.256.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tempesta-tech/blog/HEAD/mariadb/collations2/res13/iostat.range.256.txt -------------------------------------------------------------------------------- /mariadb/collations2/res13/iostat.range.32.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tempesta-tech/blog/HEAD/mariadb/collations2/res13/iostat.range.32.txt -------------------------------------------------------------------------------- /mariadb/collations2/res13/iostat.range.64.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tempesta-tech/blog/HEAD/mariadb/collations2/res13/iostat.range.64.txt -------------------------------------------------------------------------------- /mariadb/collations2/res13/iostat.range.8.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tempesta-tech/blog/HEAD/mariadb/collations2/res13/iostat.range.8.txt -------------------------------------------------------------------------------- /mariadb/collations2/res13/load.sysbench.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tempesta-tech/blog/HEAD/mariadb/collations2/res13/load.sysbench.txt -------------------------------------------------------------------------------- /mariadb/collations2/res13/range.1.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tempesta-tech/blog/HEAD/mariadb/collations2/res13/range.1.res -------------------------------------------------------------------------------- /mariadb/collations2/res13/range.128.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tempesta-tech/blog/HEAD/mariadb/collations2/res13/range.128.res -------------------------------------------------------------------------------- /mariadb/collations2/res13/range.16.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tempesta-tech/blog/HEAD/mariadb/collations2/res13/range.16.res -------------------------------------------------------------------------------- /mariadb/collations2/res13/range.256.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tempesta-tech/blog/HEAD/mariadb/collations2/res13/range.256.res -------------------------------------------------------------------------------- /mariadb/collations2/res13/range.32.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tempesta-tech/blog/HEAD/mariadb/collations2/res13/range.32.res -------------------------------------------------------------------------------- /mariadb/collations2/res13/range.64.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tempesta-tech/blog/HEAD/mariadb/collations2/res13/range.64.res -------------------------------------------------------------------------------- /mariadb/collations2/res13/range.8.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tempesta-tech/blog/HEAD/mariadb/collations2/res13/range.8.res -------------------------------------------------------------------------------- /mariadb/collations2/res13/show.table.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tempesta-tech/blog/HEAD/mariadb/collations2/res13/show.table.txt -------------------------------------------------------------------------------- /mariadb/collations2/res14/iostat.range.1.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tempesta-tech/blog/HEAD/mariadb/collations2/res14/iostat.range.1.txt -------------------------------------------------------------------------------- /mariadb/collations2/res14/iostat.range.128.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tempesta-tech/blog/HEAD/mariadb/collations2/res14/iostat.range.128.txt -------------------------------------------------------------------------------- /mariadb/collations2/res14/iostat.range.16.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tempesta-tech/blog/HEAD/mariadb/collations2/res14/iostat.range.16.txt -------------------------------------------------------------------------------- /mariadb/collations2/res14/iostat.range.256.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tempesta-tech/blog/HEAD/mariadb/collations2/res14/iostat.range.256.txt -------------------------------------------------------------------------------- /mariadb/collations2/res14/iostat.range.32.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tempesta-tech/blog/HEAD/mariadb/collations2/res14/iostat.range.32.txt -------------------------------------------------------------------------------- /mariadb/collations2/res14/iostat.range.64.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tempesta-tech/blog/HEAD/mariadb/collations2/res14/iostat.range.64.txt -------------------------------------------------------------------------------- /mariadb/collations2/res14/iostat.range.8.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tempesta-tech/blog/HEAD/mariadb/collations2/res14/iostat.range.8.txt -------------------------------------------------------------------------------- /mariadb/collations2/res14/load.sysbench.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tempesta-tech/blog/HEAD/mariadb/collations2/res14/load.sysbench.txt -------------------------------------------------------------------------------- /mariadb/collations2/res14/range.1.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tempesta-tech/blog/HEAD/mariadb/collations2/res14/range.1.res -------------------------------------------------------------------------------- /mariadb/collations2/res14/range.128.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tempesta-tech/blog/HEAD/mariadb/collations2/res14/range.128.res -------------------------------------------------------------------------------- /mariadb/collations2/res14/range.16.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tempesta-tech/blog/HEAD/mariadb/collations2/res14/range.16.res -------------------------------------------------------------------------------- /mariadb/collations2/res14/range.256.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tempesta-tech/blog/HEAD/mariadb/collations2/res14/range.256.res -------------------------------------------------------------------------------- /mariadb/collations2/res14/range.32.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tempesta-tech/blog/HEAD/mariadb/collations2/res14/range.32.res -------------------------------------------------------------------------------- /mariadb/collations2/res14/range.64.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tempesta-tech/blog/HEAD/mariadb/collations2/res14/range.64.res -------------------------------------------------------------------------------- /mariadb/collations2/res14/range.8.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tempesta-tech/blog/HEAD/mariadb/collations2/res14/range.8.res -------------------------------------------------------------------------------- /mariadb/collations2/res14/show.table.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tempesta-tech/blog/HEAD/mariadb/collations2/res14/show.table.txt -------------------------------------------------------------------------------- /mariadb/collations2/res15/iostat.range.1.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tempesta-tech/blog/HEAD/mariadb/collations2/res15/iostat.range.1.txt -------------------------------------------------------------------------------- /mariadb/collations2/res15/iostat.range.128.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tempesta-tech/blog/HEAD/mariadb/collations2/res15/iostat.range.128.txt -------------------------------------------------------------------------------- /mariadb/collations2/res15/iostat.range.16.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tempesta-tech/blog/HEAD/mariadb/collations2/res15/iostat.range.16.txt -------------------------------------------------------------------------------- /mariadb/collations2/res15/iostat.range.256.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tempesta-tech/blog/HEAD/mariadb/collations2/res15/iostat.range.256.txt -------------------------------------------------------------------------------- /mariadb/collations2/res15/iostat.range.32.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tempesta-tech/blog/HEAD/mariadb/collations2/res15/iostat.range.32.txt -------------------------------------------------------------------------------- /mariadb/collations2/res15/iostat.range.64.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tempesta-tech/blog/HEAD/mariadb/collations2/res15/iostat.range.64.txt -------------------------------------------------------------------------------- /mariadb/collations2/res15/iostat.range.8.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tempesta-tech/blog/HEAD/mariadb/collations2/res15/iostat.range.8.txt -------------------------------------------------------------------------------- /mariadb/collations2/res15/load.sysbench.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tempesta-tech/blog/HEAD/mariadb/collations2/res15/load.sysbench.txt -------------------------------------------------------------------------------- /mariadb/collations2/res15/range.1.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tempesta-tech/blog/HEAD/mariadb/collations2/res15/range.1.res -------------------------------------------------------------------------------- /mariadb/collations2/res15/range.128.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tempesta-tech/blog/HEAD/mariadb/collations2/res15/range.128.res -------------------------------------------------------------------------------- /mariadb/collations2/res15/range.16.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tempesta-tech/blog/HEAD/mariadb/collations2/res15/range.16.res -------------------------------------------------------------------------------- /mariadb/collations2/res15/range.256.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tempesta-tech/blog/HEAD/mariadb/collations2/res15/range.256.res -------------------------------------------------------------------------------- /mariadb/collations2/res15/range.32.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tempesta-tech/blog/HEAD/mariadb/collations2/res15/range.32.res -------------------------------------------------------------------------------- /mariadb/collations2/res15/range.64.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tempesta-tech/blog/HEAD/mariadb/collations2/res15/range.64.res -------------------------------------------------------------------------------- /mariadb/collations2/res15/range.8.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tempesta-tech/blog/HEAD/mariadb/collations2/res15/range.8.res -------------------------------------------------------------------------------- /mariadb/collations2/res15/show.table.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tempesta-tech/blog/HEAD/mariadb/collations2/res15/show.table.txt -------------------------------------------------------------------------------- /mariadb/collations2/res16/iostat.range.1.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tempesta-tech/blog/HEAD/mariadb/collations2/res16/iostat.range.1.txt -------------------------------------------------------------------------------- /mariadb/collations2/res16/iostat.range.128.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tempesta-tech/blog/HEAD/mariadb/collations2/res16/iostat.range.128.txt -------------------------------------------------------------------------------- /mariadb/collations2/res16/iostat.range.16.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tempesta-tech/blog/HEAD/mariadb/collations2/res16/iostat.range.16.txt -------------------------------------------------------------------------------- /mariadb/collations2/res16/iostat.range.256.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tempesta-tech/blog/HEAD/mariadb/collations2/res16/iostat.range.256.txt -------------------------------------------------------------------------------- /mariadb/collations2/res16/iostat.range.32.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tempesta-tech/blog/HEAD/mariadb/collations2/res16/iostat.range.32.txt -------------------------------------------------------------------------------- /mariadb/collations2/res16/iostat.range.64.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tempesta-tech/blog/HEAD/mariadb/collations2/res16/iostat.range.64.txt -------------------------------------------------------------------------------- /mariadb/collations2/res16/iostat.range.8.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tempesta-tech/blog/HEAD/mariadb/collations2/res16/iostat.range.8.txt -------------------------------------------------------------------------------- /mariadb/collations2/res16/load.sysbench.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tempesta-tech/blog/HEAD/mariadb/collations2/res16/load.sysbench.txt -------------------------------------------------------------------------------- /mariadb/collations2/res16/range.1.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tempesta-tech/blog/HEAD/mariadb/collations2/res16/range.1.res -------------------------------------------------------------------------------- /mariadb/collations2/res16/range.128.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tempesta-tech/blog/HEAD/mariadb/collations2/res16/range.128.res -------------------------------------------------------------------------------- /mariadb/collations2/res16/range.16.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tempesta-tech/blog/HEAD/mariadb/collations2/res16/range.16.res -------------------------------------------------------------------------------- /mariadb/collations2/res16/range.256.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tempesta-tech/blog/HEAD/mariadb/collations2/res16/range.256.res -------------------------------------------------------------------------------- /mariadb/collations2/res16/range.32.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tempesta-tech/blog/HEAD/mariadb/collations2/res16/range.32.res -------------------------------------------------------------------------------- /mariadb/collations2/res16/range.64.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tempesta-tech/blog/HEAD/mariadb/collations2/res16/range.64.res -------------------------------------------------------------------------------- /mariadb/collations2/res16/range.8.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tempesta-tech/blog/HEAD/mariadb/collations2/res16/range.8.res -------------------------------------------------------------------------------- /mariadb/collations2/res16/show.table.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tempesta-tech/blog/HEAD/mariadb/collations2/res16/show.table.txt -------------------------------------------------------------------------------- /mariadb/collations2/res20/iostat.range.1.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tempesta-tech/blog/HEAD/mariadb/collations2/res20/iostat.range.1.txt -------------------------------------------------------------------------------- /mariadb/collations2/res20/iostat.range.128.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tempesta-tech/blog/HEAD/mariadb/collations2/res20/iostat.range.128.txt -------------------------------------------------------------------------------- /mariadb/collations2/res20/iostat.range.16.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tempesta-tech/blog/HEAD/mariadb/collations2/res20/iostat.range.16.txt -------------------------------------------------------------------------------- /mariadb/collations2/res20/iostat.range.256.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tempesta-tech/blog/HEAD/mariadb/collations2/res20/iostat.range.256.txt -------------------------------------------------------------------------------- /mariadb/collations2/res20/iostat.range.32.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tempesta-tech/blog/HEAD/mariadb/collations2/res20/iostat.range.32.txt -------------------------------------------------------------------------------- /mariadb/collations2/res20/iostat.range.64.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tempesta-tech/blog/HEAD/mariadb/collations2/res20/iostat.range.64.txt -------------------------------------------------------------------------------- /mariadb/collations2/res20/iostat.range.8.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tempesta-tech/blog/HEAD/mariadb/collations2/res20/iostat.range.8.txt -------------------------------------------------------------------------------- /mariadb/collations2/res20/load.sysbench.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tempesta-tech/blog/HEAD/mariadb/collations2/res20/load.sysbench.txt -------------------------------------------------------------------------------- /mariadb/collations2/res20/range.1.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tempesta-tech/blog/HEAD/mariadb/collations2/res20/range.1.res -------------------------------------------------------------------------------- /mariadb/collations2/res20/range.128.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tempesta-tech/blog/HEAD/mariadb/collations2/res20/range.128.res -------------------------------------------------------------------------------- /mariadb/collations2/res20/range.16.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tempesta-tech/blog/HEAD/mariadb/collations2/res20/range.16.res -------------------------------------------------------------------------------- /mariadb/collations2/res20/range.256.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tempesta-tech/blog/HEAD/mariadb/collations2/res20/range.256.res -------------------------------------------------------------------------------- /mariadb/collations2/res20/range.32.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tempesta-tech/blog/HEAD/mariadb/collations2/res20/range.32.res -------------------------------------------------------------------------------- /mariadb/collations2/res20/range.64.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tempesta-tech/blog/HEAD/mariadb/collations2/res20/range.64.res -------------------------------------------------------------------------------- /mariadb/collations2/res20/range.8.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tempesta-tech/blog/HEAD/mariadb/collations2/res20/range.8.res -------------------------------------------------------------------------------- /mariadb/collations2/res20/show.table.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tempesta-tech/blog/HEAD/mariadb/collations2/res20/show.table.txt -------------------------------------------------------------------------------- /mariadb/collations2/res21/iostat.range.1.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tempesta-tech/blog/HEAD/mariadb/collations2/res21/iostat.range.1.txt -------------------------------------------------------------------------------- /mariadb/collations2/res21/iostat.range.128.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tempesta-tech/blog/HEAD/mariadb/collations2/res21/iostat.range.128.txt -------------------------------------------------------------------------------- /mariadb/collations2/res21/iostat.range.16.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tempesta-tech/blog/HEAD/mariadb/collations2/res21/iostat.range.16.txt -------------------------------------------------------------------------------- /mariadb/collations2/res21/iostat.range.256.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tempesta-tech/blog/HEAD/mariadb/collations2/res21/iostat.range.256.txt -------------------------------------------------------------------------------- /mariadb/collations2/res21/iostat.range.32.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tempesta-tech/blog/HEAD/mariadb/collations2/res21/iostat.range.32.txt -------------------------------------------------------------------------------- /mariadb/collations2/res21/iostat.range.64.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tempesta-tech/blog/HEAD/mariadb/collations2/res21/iostat.range.64.txt -------------------------------------------------------------------------------- /mariadb/collations2/res21/iostat.range.8.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tempesta-tech/blog/HEAD/mariadb/collations2/res21/iostat.range.8.txt -------------------------------------------------------------------------------- /mariadb/collations2/res21/load.sysbench.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tempesta-tech/blog/HEAD/mariadb/collations2/res21/load.sysbench.txt -------------------------------------------------------------------------------- /mariadb/collations2/res21/range.1.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tempesta-tech/blog/HEAD/mariadb/collations2/res21/range.1.res -------------------------------------------------------------------------------- /mariadb/collations2/res21/range.128.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tempesta-tech/blog/HEAD/mariadb/collations2/res21/range.128.res -------------------------------------------------------------------------------- /mariadb/collations2/res21/range.16.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tempesta-tech/blog/HEAD/mariadb/collations2/res21/range.16.res -------------------------------------------------------------------------------- /mariadb/collations2/res21/range.256.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tempesta-tech/blog/HEAD/mariadb/collations2/res21/range.256.res -------------------------------------------------------------------------------- /mariadb/collations2/res21/range.32.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tempesta-tech/blog/HEAD/mariadb/collations2/res21/range.32.res -------------------------------------------------------------------------------- /mariadb/collations2/res21/range.64.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tempesta-tech/blog/HEAD/mariadb/collations2/res21/range.64.res -------------------------------------------------------------------------------- /mariadb/collations2/res21/range.8.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tempesta-tech/blog/HEAD/mariadb/collations2/res21/range.8.res -------------------------------------------------------------------------------- /mariadb/collations2/res21/show.table.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tempesta-tech/blog/HEAD/mariadb/collations2/res21/show.table.txt -------------------------------------------------------------------------------- /mariadb/collations2/res22/iostat.range.1.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tempesta-tech/blog/HEAD/mariadb/collations2/res22/iostat.range.1.txt -------------------------------------------------------------------------------- /mariadb/collations2/res22/iostat.range.128.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tempesta-tech/blog/HEAD/mariadb/collations2/res22/iostat.range.128.txt -------------------------------------------------------------------------------- /mariadb/collations2/res22/iostat.range.16.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tempesta-tech/blog/HEAD/mariadb/collations2/res22/iostat.range.16.txt -------------------------------------------------------------------------------- /mariadb/collations2/res22/iostat.range.256.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tempesta-tech/blog/HEAD/mariadb/collations2/res22/iostat.range.256.txt -------------------------------------------------------------------------------- /mariadb/collations2/res22/iostat.range.32.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tempesta-tech/blog/HEAD/mariadb/collations2/res22/iostat.range.32.txt -------------------------------------------------------------------------------- /mariadb/collations2/res22/iostat.range.64.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tempesta-tech/blog/HEAD/mariadb/collations2/res22/iostat.range.64.txt -------------------------------------------------------------------------------- /mariadb/collations2/res22/iostat.range.8.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tempesta-tech/blog/HEAD/mariadb/collations2/res22/iostat.range.8.txt -------------------------------------------------------------------------------- /mariadb/collations2/res22/load.sysbench.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tempesta-tech/blog/HEAD/mariadb/collations2/res22/load.sysbench.txt -------------------------------------------------------------------------------- /mariadb/collations2/res22/range.1.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tempesta-tech/blog/HEAD/mariadb/collations2/res22/range.1.res -------------------------------------------------------------------------------- /mariadb/collations2/res22/range.128.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tempesta-tech/blog/HEAD/mariadb/collations2/res22/range.128.res -------------------------------------------------------------------------------- /mariadb/collations2/res22/range.16.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tempesta-tech/blog/HEAD/mariadb/collations2/res22/range.16.res -------------------------------------------------------------------------------- /mariadb/collations2/res22/range.256.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tempesta-tech/blog/HEAD/mariadb/collations2/res22/range.256.res -------------------------------------------------------------------------------- /mariadb/collations2/res22/range.32.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tempesta-tech/blog/HEAD/mariadb/collations2/res22/range.32.res -------------------------------------------------------------------------------- /mariadb/collations2/res22/range.64.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tempesta-tech/blog/HEAD/mariadb/collations2/res22/range.64.res -------------------------------------------------------------------------------- /mariadb/collations2/res22/range.8.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tempesta-tech/blog/HEAD/mariadb/collations2/res22/range.8.res -------------------------------------------------------------------------------- /mariadb/collations2/res22/show.table.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tempesta-tech/blog/HEAD/mariadb/collations2/res22/show.table.txt -------------------------------------------------------------------------------- /mariadb/collations2/res23/iostat.range.1.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tempesta-tech/blog/HEAD/mariadb/collations2/res23/iostat.range.1.txt -------------------------------------------------------------------------------- /mariadb/collations2/res23/iostat.range.128.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tempesta-tech/blog/HEAD/mariadb/collations2/res23/iostat.range.128.txt -------------------------------------------------------------------------------- /mariadb/collations2/res23/iostat.range.16.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tempesta-tech/blog/HEAD/mariadb/collations2/res23/iostat.range.16.txt -------------------------------------------------------------------------------- /mariadb/collations2/res23/iostat.range.256.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tempesta-tech/blog/HEAD/mariadb/collations2/res23/iostat.range.256.txt -------------------------------------------------------------------------------- /mariadb/collations2/res23/iostat.range.32.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tempesta-tech/blog/HEAD/mariadb/collations2/res23/iostat.range.32.txt -------------------------------------------------------------------------------- /mariadb/collations2/res23/iostat.range.64.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tempesta-tech/blog/HEAD/mariadb/collations2/res23/iostat.range.64.txt -------------------------------------------------------------------------------- /mariadb/collations2/res23/iostat.range.8.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tempesta-tech/blog/HEAD/mariadb/collations2/res23/iostat.range.8.txt -------------------------------------------------------------------------------- /mariadb/collations2/res23/load.sysbench.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tempesta-tech/blog/HEAD/mariadb/collations2/res23/load.sysbench.txt -------------------------------------------------------------------------------- /mariadb/collations2/res23/range.1.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tempesta-tech/blog/HEAD/mariadb/collations2/res23/range.1.res -------------------------------------------------------------------------------- /mariadb/collations2/res23/range.128.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tempesta-tech/blog/HEAD/mariadb/collations2/res23/range.128.res -------------------------------------------------------------------------------- /mariadb/collations2/res23/range.16.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tempesta-tech/blog/HEAD/mariadb/collations2/res23/range.16.res -------------------------------------------------------------------------------- /mariadb/collations2/res23/range.256.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tempesta-tech/blog/HEAD/mariadb/collations2/res23/range.256.res -------------------------------------------------------------------------------- /mariadb/collations2/res23/range.32.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tempesta-tech/blog/HEAD/mariadb/collations2/res23/range.32.res -------------------------------------------------------------------------------- /mariadb/collations2/res23/range.64.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tempesta-tech/blog/HEAD/mariadb/collations2/res23/range.64.res -------------------------------------------------------------------------------- /mariadb/collations2/res23/range.8.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tempesta-tech/blog/HEAD/mariadb/collations2/res23/range.8.res -------------------------------------------------------------------------------- /mariadb/collations2/res23/show.table.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tempesta-tech/blog/HEAD/mariadb/collations2/res23/show.table.txt -------------------------------------------------------------------------------- /mariadb/collations2/res24/iostat.range.1.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tempesta-tech/blog/HEAD/mariadb/collations2/res24/iostat.range.1.txt -------------------------------------------------------------------------------- /mariadb/collations2/res24/iostat.range.128.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tempesta-tech/blog/HEAD/mariadb/collations2/res24/iostat.range.128.txt -------------------------------------------------------------------------------- /mariadb/collations2/res24/iostat.range.16.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tempesta-tech/blog/HEAD/mariadb/collations2/res24/iostat.range.16.txt -------------------------------------------------------------------------------- /mariadb/collations2/res24/iostat.range.256.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tempesta-tech/blog/HEAD/mariadb/collations2/res24/iostat.range.256.txt -------------------------------------------------------------------------------- /mariadb/collations2/res24/iostat.range.32.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tempesta-tech/blog/HEAD/mariadb/collations2/res24/iostat.range.32.txt -------------------------------------------------------------------------------- /mariadb/collations2/res24/iostat.range.64.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tempesta-tech/blog/HEAD/mariadb/collations2/res24/iostat.range.64.txt -------------------------------------------------------------------------------- /mariadb/collations2/res24/iostat.range.8.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tempesta-tech/blog/HEAD/mariadb/collations2/res24/iostat.range.8.txt -------------------------------------------------------------------------------- /mariadb/collations2/res24/load.sysbench.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tempesta-tech/blog/HEAD/mariadb/collations2/res24/load.sysbench.txt -------------------------------------------------------------------------------- /mariadb/collations2/res24/range.1.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tempesta-tech/blog/HEAD/mariadb/collations2/res24/range.1.res -------------------------------------------------------------------------------- /mariadb/collations2/res24/range.128.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tempesta-tech/blog/HEAD/mariadb/collations2/res24/range.128.res -------------------------------------------------------------------------------- /mariadb/collations2/res24/range.16.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tempesta-tech/blog/HEAD/mariadb/collations2/res24/range.16.res -------------------------------------------------------------------------------- /mariadb/collations2/res24/range.256.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tempesta-tech/blog/HEAD/mariadb/collations2/res24/range.256.res -------------------------------------------------------------------------------- /mariadb/collations2/res24/range.32.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tempesta-tech/blog/HEAD/mariadb/collations2/res24/range.32.res -------------------------------------------------------------------------------- /mariadb/collations2/res24/range.64.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tempesta-tech/blog/HEAD/mariadb/collations2/res24/range.64.res -------------------------------------------------------------------------------- /mariadb/collations2/res24/range.8.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tempesta-tech/blog/HEAD/mariadb/collations2/res24/range.8.res -------------------------------------------------------------------------------- /mariadb/collations2/res24/show.table.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tempesta-tech/blog/HEAD/mariadb/collations2/res24/show.table.txt -------------------------------------------------------------------------------- /mariadb/collations2/res25/iostat.range.1.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tempesta-tech/blog/HEAD/mariadb/collations2/res25/iostat.range.1.txt -------------------------------------------------------------------------------- /mariadb/collations2/res25/iostat.range.128.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tempesta-tech/blog/HEAD/mariadb/collations2/res25/iostat.range.128.txt -------------------------------------------------------------------------------- /mariadb/collations2/res25/iostat.range.16.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tempesta-tech/blog/HEAD/mariadb/collations2/res25/iostat.range.16.txt -------------------------------------------------------------------------------- /mariadb/collations2/res25/iostat.range.256.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tempesta-tech/blog/HEAD/mariadb/collations2/res25/iostat.range.256.txt -------------------------------------------------------------------------------- /mariadb/collations2/res25/iostat.range.32.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tempesta-tech/blog/HEAD/mariadb/collations2/res25/iostat.range.32.txt -------------------------------------------------------------------------------- /mariadb/collations2/res25/iostat.range.64.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tempesta-tech/blog/HEAD/mariadb/collations2/res25/iostat.range.64.txt -------------------------------------------------------------------------------- /mariadb/collations2/res25/iostat.range.8.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tempesta-tech/blog/HEAD/mariadb/collations2/res25/iostat.range.8.txt -------------------------------------------------------------------------------- /mariadb/collations2/res25/load.sysbench.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tempesta-tech/blog/HEAD/mariadb/collations2/res25/load.sysbench.txt -------------------------------------------------------------------------------- /mariadb/collations2/res25/range.1.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tempesta-tech/blog/HEAD/mariadb/collations2/res25/range.1.res -------------------------------------------------------------------------------- /mariadb/collations2/res25/range.128.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tempesta-tech/blog/HEAD/mariadb/collations2/res25/range.128.res -------------------------------------------------------------------------------- /mariadb/collations2/res25/range.16.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tempesta-tech/blog/HEAD/mariadb/collations2/res25/range.16.res -------------------------------------------------------------------------------- /mariadb/collations2/res25/range.256.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tempesta-tech/blog/HEAD/mariadb/collations2/res25/range.256.res -------------------------------------------------------------------------------- /mariadb/collations2/res25/range.32.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tempesta-tech/blog/HEAD/mariadb/collations2/res25/range.32.res -------------------------------------------------------------------------------- /mariadb/collations2/res25/range.64.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tempesta-tech/blog/HEAD/mariadb/collations2/res25/range.64.res -------------------------------------------------------------------------------- /mariadb/collations2/res25/range.8.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tempesta-tech/blog/HEAD/mariadb/collations2/res25/range.8.res -------------------------------------------------------------------------------- /mariadb/collations2/res25/show.table.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tempesta-tech/blog/HEAD/mariadb/collations2/res25/show.table.txt -------------------------------------------------------------------------------- /mariadb/collations2/res26/iostat.range.1.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tempesta-tech/blog/HEAD/mariadb/collations2/res26/iostat.range.1.txt -------------------------------------------------------------------------------- /mariadb/collations2/res26/iostat.range.128.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tempesta-tech/blog/HEAD/mariadb/collations2/res26/iostat.range.128.txt -------------------------------------------------------------------------------- /mariadb/collations2/res26/iostat.range.16.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tempesta-tech/blog/HEAD/mariadb/collations2/res26/iostat.range.16.txt -------------------------------------------------------------------------------- /mariadb/collations2/res26/iostat.range.256.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tempesta-tech/blog/HEAD/mariadb/collations2/res26/iostat.range.256.txt -------------------------------------------------------------------------------- /mariadb/collations2/res26/iostat.range.32.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tempesta-tech/blog/HEAD/mariadb/collations2/res26/iostat.range.32.txt -------------------------------------------------------------------------------- /mariadb/collations2/res26/iostat.range.64.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tempesta-tech/blog/HEAD/mariadb/collations2/res26/iostat.range.64.txt -------------------------------------------------------------------------------- /mariadb/collations2/res26/iostat.range.8.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tempesta-tech/blog/HEAD/mariadb/collations2/res26/iostat.range.8.txt -------------------------------------------------------------------------------- /mariadb/collations2/res26/load.sysbench.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tempesta-tech/blog/HEAD/mariadb/collations2/res26/load.sysbench.txt -------------------------------------------------------------------------------- /mariadb/collations2/res26/range.1.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tempesta-tech/blog/HEAD/mariadb/collations2/res26/range.1.res -------------------------------------------------------------------------------- /mariadb/collations2/res26/range.128.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tempesta-tech/blog/HEAD/mariadb/collations2/res26/range.128.res -------------------------------------------------------------------------------- /mariadb/collations2/res26/range.16.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tempesta-tech/blog/HEAD/mariadb/collations2/res26/range.16.res -------------------------------------------------------------------------------- /mariadb/collations2/res26/range.256.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tempesta-tech/blog/HEAD/mariadb/collations2/res26/range.256.res -------------------------------------------------------------------------------- /mariadb/collations2/res26/range.32.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tempesta-tech/blog/HEAD/mariadb/collations2/res26/range.32.res -------------------------------------------------------------------------------- /mariadb/collations2/res26/range.64.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tempesta-tech/blog/HEAD/mariadb/collations2/res26/range.64.res -------------------------------------------------------------------------------- /mariadb/collations2/res26/range.8.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tempesta-tech/blog/HEAD/mariadb/collations2/res26/range.8.res -------------------------------------------------------------------------------- /mariadb/collations2/res26/show.table.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tempesta-tech/blog/HEAD/mariadb/collations2/res26/show.table.txt -------------------------------------------------------------------------------- /mariadb/collations2/run.mysqld: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tempesta-tech/blog/HEAD/mariadb/collations2/run.mysqld -------------------------------------------------------------------------------- /mariadb/collations2/run.mysqld.01: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tempesta-tech/blog/HEAD/mariadb/collations2/run.mysqld.01 -------------------------------------------------------------------------------- /mariadb/collations2/run.mysqld.02: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tempesta-tech/blog/HEAD/mariadb/collations2/run.mysqld.02 -------------------------------------------------------------------------------- /mariadb/collations2/run.mysqld.03: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tempesta-tech/blog/HEAD/mariadb/collations2/run.mysqld.03 -------------------------------------------------------------------------------- /mariadb/collations2/run.mysqld.04: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tempesta-tech/blog/HEAD/mariadb/collations2/run.mysqld.04 -------------------------------------------------------------------------------- /mariadb/collations2/run.mysqld.05: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tempesta-tech/blog/HEAD/mariadb/collations2/run.mysqld.05 -------------------------------------------------------------------------------- /mariadb/collations2/run.mysqld.06: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tempesta-tech/blog/HEAD/mariadb/collations2/run.mysqld.06 -------------------------------------------------------------------------------- /mariadb/collations2/run.mysqld.07: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tempesta-tech/blog/HEAD/mariadb/collations2/run.mysqld.07 -------------------------------------------------------------------------------- /mariadb/collations2/run.mysqld.10: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tempesta-tech/blog/HEAD/mariadb/collations2/run.mysqld.10 -------------------------------------------------------------------------------- /mariadb/collations2/run.mysqld.11: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tempesta-tech/blog/HEAD/mariadb/collations2/run.mysqld.11 -------------------------------------------------------------------------------- /mariadb/collations2/run.mysqld.12: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tempesta-tech/blog/HEAD/mariadb/collations2/run.mysqld.12 -------------------------------------------------------------------------------- /mariadb/collations2/run.mysqld.13: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tempesta-tech/blog/HEAD/mariadb/collations2/run.mysqld.13 -------------------------------------------------------------------------------- /mariadb/collations2/run.mysqld.14: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tempesta-tech/blog/HEAD/mariadb/collations2/run.mysqld.14 -------------------------------------------------------------------------------- /mariadb/collations2/run.mysqld.15: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tempesta-tech/blog/HEAD/mariadb/collations2/run.mysqld.15 -------------------------------------------------------------------------------- /mariadb/collations2/run.mysqld.16: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tempesta-tech/blog/HEAD/mariadb/collations2/run.mysqld.16 -------------------------------------------------------------------------------- /mariadb/collations2/run.mysqld.20: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tempesta-tech/blog/HEAD/mariadb/collations2/run.mysqld.20 -------------------------------------------------------------------------------- /mariadb/collations2/run.mysqld.21: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tempesta-tech/blog/HEAD/mariadb/collations2/run.mysqld.21 -------------------------------------------------------------------------------- /mariadb/collations2/run.mysqld.22: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tempesta-tech/blog/HEAD/mariadb/collations2/run.mysqld.22 -------------------------------------------------------------------------------- /mariadb/collations2/run.mysqld.23: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tempesta-tech/blog/HEAD/mariadb/collations2/run.mysqld.23 -------------------------------------------------------------------------------- /mariadb/collations2/run.mysqld.24: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tempesta-tech/blog/HEAD/mariadb/collations2/run.mysqld.24 -------------------------------------------------------------------------------- /mariadb/collations2/run.mysqld.25: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tempesta-tech/blog/HEAD/mariadb/collations2/run.mysqld.25 -------------------------------------------------------------------------------- /mariadb/collations2/run.mysqld.26: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tempesta-tech/blog/HEAD/mariadb/collations2/run.mysqld.26 -------------------------------------------------------------------------------- /mariadb/collations2/run.sysbench: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tempesta-tech/blog/HEAD/mariadb/collations2/run.sysbench -------------------------------------------------------------------------------- /mariadb/collations2/runme.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tempesta-tech/blog/HEAD/mariadb/collations2/runme.sh -------------------------------------------------------------------------------- /mariadb/collations2/server.01: -------------------------------------------------------------------------------- 1 | mariadb-10.6.3 2 | -------------------------------------------------------------------------------- /mariadb/collations2/server.02: -------------------------------------------------------------------------------- 1 | mariadb-10.6.3 2 | -------------------------------------------------------------------------------- /mariadb/collations2/server.03: -------------------------------------------------------------------------------- 1 | mariadb-10.6.3 2 | -------------------------------------------------------------------------------- /mariadb/collations2/server.04: -------------------------------------------------------------------------------- 1 | mariadb-10.6.3 2 | -------------------------------------------------------------------------------- /mariadb/collations2/server.05: -------------------------------------------------------------------------------- 1 | mariadb-10.6.3 2 | -------------------------------------------------------------------------------- /mariadb/collations2/server.06: -------------------------------------------------------------------------------- 1 | mariadb-10.6.3 2 | -------------------------------------------------------------------------------- /mariadb/collations2/server.07: -------------------------------------------------------------------------------- 1 | mariadb-10.6.3 2 | -------------------------------------------------------------------------------- /mariadb/collations2/server.10: -------------------------------------------------------------------------------- 1 | mysql-5.7.34 2 | -------------------------------------------------------------------------------- /mariadb/collations2/server.11: -------------------------------------------------------------------------------- 1 | mysql-5.7.34 2 | -------------------------------------------------------------------------------- /mariadb/collations2/server.12: -------------------------------------------------------------------------------- 1 | mysql-5.7.34 2 | -------------------------------------------------------------------------------- /mariadb/collations2/server.13: -------------------------------------------------------------------------------- 1 | mysql-5.7.34 2 | -------------------------------------------------------------------------------- /mariadb/collations2/server.14: -------------------------------------------------------------------------------- 1 | mysql-5.7.34 2 | -------------------------------------------------------------------------------- /mariadb/collations2/server.15: -------------------------------------------------------------------------------- 1 | mysql-5.7.34 2 | -------------------------------------------------------------------------------- /mariadb/collations2/server.16: -------------------------------------------------------------------------------- 1 | mysql-5.7.34 2 | -------------------------------------------------------------------------------- /mariadb/collations2/server.20: -------------------------------------------------------------------------------- 1 | mysql-8.0.25 2 | -------------------------------------------------------------------------------- /mariadb/collations2/server.21: -------------------------------------------------------------------------------- 1 | mysql-8.0.25 2 | -------------------------------------------------------------------------------- /mariadb/collations2/server.22: -------------------------------------------------------------------------------- 1 | mysql-8.0.25 2 | -------------------------------------------------------------------------------- /mariadb/collations2/server.23: -------------------------------------------------------------------------------- 1 | mysql-8.0.25 2 | -------------------------------------------------------------------------------- /mariadb/collations2/server.24: -------------------------------------------------------------------------------- 1 | mysql-8.0.25 2 | -------------------------------------------------------------------------------- /mariadb/collations2/server.25: -------------------------------------------------------------------------------- 1 | mysql-8.0.25 2 | -------------------------------------------------------------------------------- /mariadb/collations2/server.26: -------------------------------------------------------------------------------- 1 | mysql-8.0.25 2 | -------------------------------------------------------------------------------- /mariadb/collations2/sysbench.data: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tempesta-tech/blog/HEAD/mariadb/collations2/sysbench.data -------------------------------------------------------------------------------- /mariadb/collations2/sysbench.gnuplot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tempesta-tech/blog/HEAD/mariadb/collations2/sysbench.gnuplot -------------------------------------------------------------------------------- /mariadb/collations2/sysbench1.gnuplot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tempesta-tech/blog/HEAD/mariadb/collations2/sysbench1.gnuplot -------------------------------------------------------------------------------- /mempool/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tempesta-tech/blog/HEAD/mempool/Makefile -------------------------------------------------------------------------------- /mempool/memalign.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tempesta-tech/blog/HEAD/mempool/memalign.cc -------------------------------------------------------------------------------- /mempool/pool.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tempesta-tech/blog/HEAD/mempool/pool.c -------------------------------------------------------------------------------- /mempool/pool.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tempesta-tech/blog/HEAD/mempool/pool.cc -------------------------------------------------------------------------------- /posix_spawn/.clang-format: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tempesta-tech/blog/HEAD/posix_spawn/.clang-format -------------------------------------------------------------------------------- /posix_spawn/popen.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tempesta-tech/blog/HEAD/posix_spawn/popen.cc -------------------------------------------------------------------------------- /posix_spawn/posix_spawn_pipe.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tempesta-tech/blog/HEAD/posix_spawn/posix_spawn_pipe.cc -------------------------------------------------------------------------------- /posix_spawn/posix_spawnp.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tempesta-tech/blog/HEAD/posix_spawn/posix_spawnp.cc -------------------------------------------------------------------------------- /posix_spawn/system.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tempesta-tech/blog/HEAD/posix_spawn/system.cc -------------------------------------------------------------------------------- /tsx.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tempesta-tech/blog/HEAD/tsx.cc --------------------------------------------------------------------------------