├── README.md ├── algo ├── 2016-09-08-deadlock_prevention_algorithms.md └── lock_free_object_access.md ├── go ├── compile.md ├── delve.md ├── syntax.md └── test.md ├── greenplum ├── 0001-CAS-is-not-safe-enough-to-protect-PGPROC-free-list-t.patch ├── 2015-12-12-pgbench.markdown ├── 2015-12-16-lockHolderProc.markdown ├── 2015-12-24-resqueue_lock.markdown ├── 2015-12-28-resqueue_lock.markdown ├── 2016-01-05-resqueue_lock.markdown ├── 2016-01-14-libpq_protocol.markdown ├── 2016-01-15-QD2QE_protocol.markdown ├── 2016-03-23-heaptuple.markdown ├── 2016-04-01-memoryctxt.markdown ├── 2016-04-05-proclock.markdown ├── 2016-04-11-iso.markdown ├── 2016-04-13-fts.markdown ├── 2016-05-18-initTm.md ├── 2016-05-23-mock_same_file_func.md ├── 2016-05-27-gpdb_snapshot.md ├── 2016-06-01-sequence.md ├── 2016-06-21-pg_conn_status.md ├── 2016-06-28-PGresult.md ├── 2016-07-07-signals.md ├── 2016-07-13-hash_search.md ├── 2016-07-25-about_unit_test.md ├── 2016-08-02-error_data.md ├── 2016-08-04-plc_icg_udf.md ├── 2016-08-15-postmaster_reset.md ├── 2016-08-24-resource_manager.md ├── 2016-08-30-run_tinc_tests.md ├── 2016-09-19-pgbench_tutorial.md ├── 2016-11-03-session_reset.md ├── 2016-11-15-bootstap_of_postgresql.md ├── 2016-12-06-planner_footnote.md ├── 2016-12-23-memprot.markdown ├── 2017-03-11-mvcc.md ├── 2017-03-16-lock_implementation.md ├── 2017-03-16-lock_usage.md ├── 2017-03-22-cache_invalidation.md ├── 2017-03-24-lwlock_spinlock.md ├── cache_invalidation.md ├── distributed_deadlock.md ├── resource_owner.md ├── resource_queue_lock.md └── tuple_distribution.md ├── linux ├── 2016-03-23-netlink.markdown ├── 2016-03-28-oomkiller.markdown ├── 2016-04-07-sockopt.markdown ├── 2016-04-18-dtrace_usage.md ├── 2016-04-19-dtrace_add_static_probes.md ├── 2016-04-21-dynamic_instrumentation.md ├── 2016-08-04-ld_preload.md ├── 2016-11-15-introduction_to_CGroups.md ├── 2016-11-17-free_output.md ├── 2016-11-28-TCP_socket_opts.md ├── 2017-01-25-system_call_footnotes.md ├── 2017-02-24-overcommit.md ├── 2017-03-15-linux_scheduler.md └── glibc_ptmalloc.md ├── memo ├── 2016-08-03-postgresql_vs_mysql.md ├── 2016-08-22-dist_system_fun_profit_part1.md ├── 2016-08-25-dist_system_fun_profit_part2.md ├── 2016-08-30-paxos.md └── 2016-09-01-dist_system_fun_profit_part3.md ├── misc ├── 2016-04-20-gdb_tips.md ├── 2016-07-05-install_docker_toolbox_osx.md ├── 2016-07-06-docker_cheat_sheet.md └── 2016-09-22-failure_when_install_python_modules.md ├── mysql ├── agg_pushdown.md ├── buffer_pool.md ├── ddl.md ├── distinct_limit.md ├── drop_table.md ├── group_commit.md ├── index_read.md ├── information_schema.md ├── innodb_storage.md ├── lock_free_hash.md ├── lock_tables.md ├── mdl_deadlock.md ├── mdl_implementation.md ├── mdl_show.md ├── mdl_usage.md ├── optimizer_1.md ├── optimizer_2.md ├── performance_schema.md ├── priviledge.md ├── pthread_mutex.md ├── replication.md ├── schema_mts.md ├── sys_vars.md ├── thr_lock.md ├── thread_pool.md └── thread_pool_performance_test.md ├── src ├── hashtable.c ├── heap.c └── simple_jdbc.java └── tidb ├── autoid.md ├── hash_join.md ├── high_level_callstack.md ├── index_lookup_join.md ├── insert_callstack.md ├── logical_optimizer.md ├── parser.md ├── physical_optimizer.md ├── prepare.md ├── ranger.md ├── select_callstack.md ├── statistics.md └── storage.md /README.md: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /algo/2016-09-08-deadlock_prevention_algorithms.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eurekaka/wiki/HEAD/algo/2016-09-08-deadlock_prevention_algorithms.md -------------------------------------------------------------------------------- /algo/lock_free_object_access.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eurekaka/wiki/HEAD/algo/lock_free_object_access.md -------------------------------------------------------------------------------- /go/compile.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eurekaka/wiki/HEAD/go/compile.md -------------------------------------------------------------------------------- /go/delve.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eurekaka/wiki/HEAD/go/delve.md -------------------------------------------------------------------------------- /go/syntax.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eurekaka/wiki/HEAD/go/syntax.md -------------------------------------------------------------------------------- /go/test.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eurekaka/wiki/HEAD/go/test.md -------------------------------------------------------------------------------- /greenplum/0001-CAS-is-not-safe-enough-to-protect-PGPROC-free-list-t.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eurekaka/wiki/HEAD/greenplum/0001-CAS-is-not-safe-enough-to-protect-PGPROC-free-list-t.patch -------------------------------------------------------------------------------- /greenplum/2015-12-12-pgbench.markdown: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eurekaka/wiki/HEAD/greenplum/2015-12-12-pgbench.markdown -------------------------------------------------------------------------------- /greenplum/2015-12-16-lockHolderProc.markdown: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eurekaka/wiki/HEAD/greenplum/2015-12-16-lockHolderProc.markdown -------------------------------------------------------------------------------- /greenplum/2015-12-24-resqueue_lock.markdown: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eurekaka/wiki/HEAD/greenplum/2015-12-24-resqueue_lock.markdown -------------------------------------------------------------------------------- /greenplum/2015-12-28-resqueue_lock.markdown: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eurekaka/wiki/HEAD/greenplum/2015-12-28-resqueue_lock.markdown -------------------------------------------------------------------------------- /greenplum/2016-01-05-resqueue_lock.markdown: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eurekaka/wiki/HEAD/greenplum/2016-01-05-resqueue_lock.markdown -------------------------------------------------------------------------------- /greenplum/2016-01-14-libpq_protocol.markdown: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eurekaka/wiki/HEAD/greenplum/2016-01-14-libpq_protocol.markdown -------------------------------------------------------------------------------- /greenplum/2016-01-15-QD2QE_protocol.markdown: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eurekaka/wiki/HEAD/greenplum/2016-01-15-QD2QE_protocol.markdown -------------------------------------------------------------------------------- /greenplum/2016-03-23-heaptuple.markdown: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eurekaka/wiki/HEAD/greenplum/2016-03-23-heaptuple.markdown -------------------------------------------------------------------------------- /greenplum/2016-04-01-memoryctxt.markdown: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eurekaka/wiki/HEAD/greenplum/2016-04-01-memoryctxt.markdown -------------------------------------------------------------------------------- /greenplum/2016-04-05-proclock.markdown: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eurekaka/wiki/HEAD/greenplum/2016-04-05-proclock.markdown -------------------------------------------------------------------------------- /greenplum/2016-04-11-iso.markdown: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eurekaka/wiki/HEAD/greenplum/2016-04-11-iso.markdown -------------------------------------------------------------------------------- /greenplum/2016-04-13-fts.markdown: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eurekaka/wiki/HEAD/greenplum/2016-04-13-fts.markdown -------------------------------------------------------------------------------- /greenplum/2016-05-18-initTm.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eurekaka/wiki/HEAD/greenplum/2016-05-18-initTm.md -------------------------------------------------------------------------------- /greenplum/2016-05-23-mock_same_file_func.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eurekaka/wiki/HEAD/greenplum/2016-05-23-mock_same_file_func.md -------------------------------------------------------------------------------- /greenplum/2016-05-27-gpdb_snapshot.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eurekaka/wiki/HEAD/greenplum/2016-05-27-gpdb_snapshot.md -------------------------------------------------------------------------------- /greenplum/2016-06-01-sequence.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eurekaka/wiki/HEAD/greenplum/2016-06-01-sequence.md -------------------------------------------------------------------------------- /greenplum/2016-06-21-pg_conn_status.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eurekaka/wiki/HEAD/greenplum/2016-06-21-pg_conn_status.md -------------------------------------------------------------------------------- /greenplum/2016-06-28-PGresult.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eurekaka/wiki/HEAD/greenplum/2016-06-28-PGresult.md -------------------------------------------------------------------------------- /greenplum/2016-07-07-signals.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eurekaka/wiki/HEAD/greenplum/2016-07-07-signals.md -------------------------------------------------------------------------------- /greenplum/2016-07-13-hash_search.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eurekaka/wiki/HEAD/greenplum/2016-07-13-hash_search.md -------------------------------------------------------------------------------- /greenplum/2016-07-25-about_unit_test.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eurekaka/wiki/HEAD/greenplum/2016-07-25-about_unit_test.md -------------------------------------------------------------------------------- /greenplum/2016-08-02-error_data.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eurekaka/wiki/HEAD/greenplum/2016-08-02-error_data.md -------------------------------------------------------------------------------- /greenplum/2016-08-04-plc_icg_udf.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eurekaka/wiki/HEAD/greenplum/2016-08-04-plc_icg_udf.md -------------------------------------------------------------------------------- /greenplum/2016-08-15-postmaster_reset.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eurekaka/wiki/HEAD/greenplum/2016-08-15-postmaster_reset.md -------------------------------------------------------------------------------- /greenplum/2016-08-24-resource_manager.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eurekaka/wiki/HEAD/greenplum/2016-08-24-resource_manager.md -------------------------------------------------------------------------------- /greenplum/2016-08-30-run_tinc_tests.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eurekaka/wiki/HEAD/greenplum/2016-08-30-run_tinc_tests.md -------------------------------------------------------------------------------- /greenplum/2016-09-19-pgbench_tutorial.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eurekaka/wiki/HEAD/greenplum/2016-09-19-pgbench_tutorial.md -------------------------------------------------------------------------------- /greenplum/2016-11-03-session_reset.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eurekaka/wiki/HEAD/greenplum/2016-11-03-session_reset.md -------------------------------------------------------------------------------- /greenplum/2016-11-15-bootstap_of_postgresql.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eurekaka/wiki/HEAD/greenplum/2016-11-15-bootstap_of_postgresql.md -------------------------------------------------------------------------------- /greenplum/2016-12-06-planner_footnote.md: -------------------------------------------------------------------------------- 1 | ## planner footnote -------------------------------------------------------------------------------- /greenplum/2016-12-23-memprot.markdown: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eurekaka/wiki/HEAD/greenplum/2016-12-23-memprot.markdown -------------------------------------------------------------------------------- /greenplum/2017-03-11-mvcc.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eurekaka/wiki/HEAD/greenplum/2017-03-11-mvcc.md -------------------------------------------------------------------------------- /greenplum/2017-03-16-lock_implementation.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eurekaka/wiki/HEAD/greenplum/2017-03-16-lock_implementation.md -------------------------------------------------------------------------------- /greenplum/2017-03-16-lock_usage.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eurekaka/wiki/HEAD/greenplum/2017-03-16-lock_usage.md -------------------------------------------------------------------------------- /greenplum/2017-03-22-cache_invalidation.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eurekaka/wiki/HEAD/greenplum/2017-03-22-cache_invalidation.md -------------------------------------------------------------------------------- /greenplum/2017-03-24-lwlock_spinlock.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eurekaka/wiki/HEAD/greenplum/2017-03-24-lwlock_spinlock.md -------------------------------------------------------------------------------- /greenplum/cache_invalidation.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eurekaka/wiki/HEAD/greenplum/cache_invalidation.md -------------------------------------------------------------------------------- /greenplum/distributed_deadlock.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eurekaka/wiki/HEAD/greenplum/distributed_deadlock.md -------------------------------------------------------------------------------- /greenplum/resource_owner.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eurekaka/wiki/HEAD/greenplum/resource_owner.md -------------------------------------------------------------------------------- /greenplum/resource_queue_lock.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eurekaka/wiki/HEAD/greenplum/resource_queue_lock.md -------------------------------------------------------------------------------- /greenplum/tuple_distribution.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eurekaka/wiki/HEAD/greenplum/tuple_distribution.md -------------------------------------------------------------------------------- /linux/2016-03-23-netlink.markdown: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eurekaka/wiki/HEAD/linux/2016-03-23-netlink.markdown -------------------------------------------------------------------------------- /linux/2016-03-28-oomkiller.markdown: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eurekaka/wiki/HEAD/linux/2016-03-28-oomkiller.markdown -------------------------------------------------------------------------------- /linux/2016-04-07-sockopt.markdown: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eurekaka/wiki/HEAD/linux/2016-04-07-sockopt.markdown -------------------------------------------------------------------------------- /linux/2016-04-18-dtrace_usage.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eurekaka/wiki/HEAD/linux/2016-04-18-dtrace_usage.md -------------------------------------------------------------------------------- /linux/2016-04-19-dtrace_add_static_probes.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eurekaka/wiki/HEAD/linux/2016-04-19-dtrace_add_static_probes.md -------------------------------------------------------------------------------- /linux/2016-04-21-dynamic_instrumentation.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eurekaka/wiki/HEAD/linux/2016-04-21-dynamic_instrumentation.md -------------------------------------------------------------------------------- /linux/2016-08-04-ld_preload.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eurekaka/wiki/HEAD/linux/2016-08-04-ld_preload.md -------------------------------------------------------------------------------- /linux/2016-11-15-introduction_to_CGroups.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eurekaka/wiki/HEAD/linux/2016-11-15-introduction_to_CGroups.md -------------------------------------------------------------------------------- /linux/2016-11-17-free_output.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eurekaka/wiki/HEAD/linux/2016-11-17-free_output.md -------------------------------------------------------------------------------- /linux/2016-11-28-TCP_socket_opts.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eurekaka/wiki/HEAD/linux/2016-11-28-TCP_socket_opts.md -------------------------------------------------------------------------------- /linux/2017-01-25-system_call_footnotes.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eurekaka/wiki/HEAD/linux/2017-01-25-system_call_footnotes.md -------------------------------------------------------------------------------- /linux/2017-02-24-overcommit.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eurekaka/wiki/HEAD/linux/2017-02-24-overcommit.md -------------------------------------------------------------------------------- /linux/2017-03-15-linux_scheduler.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eurekaka/wiki/HEAD/linux/2017-03-15-linux_scheduler.md -------------------------------------------------------------------------------- /linux/glibc_ptmalloc.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eurekaka/wiki/HEAD/linux/glibc_ptmalloc.md -------------------------------------------------------------------------------- /memo/2016-08-03-postgresql_vs_mysql.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eurekaka/wiki/HEAD/memo/2016-08-03-postgresql_vs_mysql.md -------------------------------------------------------------------------------- /memo/2016-08-22-dist_system_fun_profit_part1.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eurekaka/wiki/HEAD/memo/2016-08-22-dist_system_fun_profit_part1.md -------------------------------------------------------------------------------- /memo/2016-08-25-dist_system_fun_profit_part2.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eurekaka/wiki/HEAD/memo/2016-08-25-dist_system_fun_profit_part2.md -------------------------------------------------------------------------------- /memo/2016-08-30-paxos.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eurekaka/wiki/HEAD/memo/2016-08-30-paxos.md -------------------------------------------------------------------------------- /memo/2016-09-01-dist_system_fun_profit_part3.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eurekaka/wiki/HEAD/memo/2016-09-01-dist_system_fun_profit_part3.md -------------------------------------------------------------------------------- /misc/2016-04-20-gdb_tips.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eurekaka/wiki/HEAD/misc/2016-04-20-gdb_tips.md -------------------------------------------------------------------------------- /misc/2016-07-05-install_docker_toolbox_osx.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eurekaka/wiki/HEAD/misc/2016-07-05-install_docker_toolbox_osx.md -------------------------------------------------------------------------------- /misc/2016-07-06-docker_cheat_sheet.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eurekaka/wiki/HEAD/misc/2016-07-06-docker_cheat_sheet.md -------------------------------------------------------------------------------- /misc/2016-09-22-failure_when_install_python_modules.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eurekaka/wiki/HEAD/misc/2016-09-22-failure_when_install_python_modules.md -------------------------------------------------------------------------------- /mysql/agg_pushdown.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eurekaka/wiki/HEAD/mysql/agg_pushdown.md -------------------------------------------------------------------------------- /mysql/buffer_pool.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eurekaka/wiki/HEAD/mysql/buffer_pool.md -------------------------------------------------------------------------------- /mysql/ddl.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eurekaka/wiki/HEAD/mysql/ddl.md -------------------------------------------------------------------------------- /mysql/distinct_limit.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eurekaka/wiki/HEAD/mysql/distinct_limit.md -------------------------------------------------------------------------------- /mysql/drop_table.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eurekaka/wiki/HEAD/mysql/drop_table.md -------------------------------------------------------------------------------- /mysql/group_commit.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eurekaka/wiki/HEAD/mysql/group_commit.md -------------------------------------------------------------------------------- /mysql/index_read.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eurekaka/wiki/HEAD/mysql/index_read.md -------------------------------------------------------------------------------- /mysql/information_schema.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eurekaka/wiki/HEAD/mysql/information_schema.md -------------------------------------------------------------------------------- /mysql/innodb_storage.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eurekaka/wiki/HEAD/mysql/innodb_storage.md -------------------------------------------------------------------------------- /mysql/lock_free_hash.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eurekaka/wiki/HEAD/mysql/lock_free_hash.md -------------------------------------------------------------------------------- /mysql/lock_tables.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eurekaka/wiki/HEAD/mysql/lock_tables.md -------------------------------------------------------------------------------- /mysql/mdl_deadlock.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eurekaka/wiki/HEAD/mysql/mdl_deadlock.md -------------------------------------------------------------------------------- /mysql/mdl_implementation.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eurekaka/wiki/HEAD/mysql/mdl_implementation.md -------------------------------------------------------------------------------- /mysql/mdl_show.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eurekaka/wiki/HEAD/mysql/mdl_show.md -------------------------------------------------------------------------------- /mysql/mdl_usage.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eurekaka/wiki/HEAD/mysql/mdl_usage.md -------------------------------------------------------------------------------- /mysql/optimizer_1.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eurekaka/wiki/HEAD/mysql/optimizer_1.md -------------------------------------------------------------------------------- /mysql/optimizer_2.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eurekaka/wiki/HEAD/mysql/optimizer_2.md -------------------------------------------------------------------------------- /mysql/performance_schema.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eurekaka/wiki/HEAD/mysql/performance_schema.md -------------------------------------------------------------------------------- /mysql/priviledge.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eurekaka/wiki/HEAD/mysql/priviledge.md -------------------------------------------------------------------------------- /mysql/pthread_mutex.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eurekaka/wiki/HEAD/mysql/pthread_mutex.md -------------------------------------------------------------------------------- /mysql/replication.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eurekaka/wiki/HEAD/mysql/replication.md -------------------------------------------------------------------------------- /mysql/schema_mts.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eurekaka/wiki/HEAD/mysql/schema_mts.md -------------------------------------------------------------------------------- /mysql/sys_vars.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eurekaka/wiki/HEAD/mysql/sys_vars.md -------------------------------------------------------------------------------- /mysql/thr_lock.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eurekaka/wiki/HEAD/mysql/thr_lock.md -------------------------------------------------------------------------------- /mysql/thread_pool.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eurekaka/wiki/HEAD/mysql/thread_pool.md -------------------------------------------------------------------------------- /mysql/thread_pool_performance_test.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eurekaka/wiki/HEAD/mysql/thread_pool_performance_test.md -------------------------------------------------------------------------------- /src/hashtable.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eurekaka/wiki/HEAD/src/hashtable.c -------------------------------------------------------------------------------- /src/heap.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eurekaka/wiki/HEAD/src/heap.c -------------------------------------------------------------------------------- /src/simple_jdbc.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eurekaka/wiki/HEAD/src/simple_jdbc.java -------------------------------------------------------------------------------- /tidb/autoid.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eurekaka/wiki/HEAD/tidb/autoid.md -------------------------------------------------------------------------------- /tidb/hash_join.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eurekaka/wiki/HEAD/tidb/hash_join.md -------------------------------------------------------------------------------- /tidb/high_level_callstack.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eurekaka/wiki/HEAD/tidb/high_level_callstack.md -------------------------------------------------------------------------------- /tidb/index_lookup_join.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eurekaka/wiki/HEAD/tidb/index_lookup_join.md -------------------------------------------------------------------------------- /tidb/insert_callstack.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eurekaka/wiki/HEAD/tidb/insert_callstack.md -------------------------------------------------------------------------------- /tidb/logical_optimizer.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eurekaka/wiki/HEAD/tidb/logical_optimizer.md -------------------------------------------------------------------------------- /tidb/parser.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eurekaka/wiki/HEAD/tidb/parser.md -------------------------------------------------------------------------------- /tidb/physical_optimizer.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eurekaka/wiki/HEAD/tidb/physical_optimizer.md -------------------------------------------------------------------------------- /tidb/prepare.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eurekaka/wiki/HEAD/tidb/prepare.md -------------------------------------------------------------------------------- /tidb/ranger.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eurekaka/wiki/HEAD/tidb/ranger.md -------------------------------------------------------------------------------- /tidb/select_callstack.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eurekaka/wiki/HEAD/tidb/select_callstack.md -------------------------------------------------------------------------------- /tidb/statistics.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eurekaka/wiki/HEAD/tidb/statistics.md -------------------------------------------------------------------------------- /tidb/storage.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eurekaka/wiki/HEAD/tidb/storage.md --------------------------------------------------------------------------------