├── .gitignore ├── LICENSE ├── README.rst ├── include ├── admin_sqlite.h ├── debug.h ├── external.h ├── fundadb.h ├── global_variables.h ├── lutils.h ├── mysql_protocol.h ├── proxysql.h ├── proxysql_macros.h └── structs.h ├── sqlite3 ├── shell.c ├── sqlite3.c └── sqlite3.h ├── src ├── Makefile ├── Makefile_nostatic ├── admin.c ├── admin_sqlite.c ├── debug.c ├── fundadb_hash.c ├── global_variables.c ├── l_utils.c ├── main.c ├── mysql_backend.c ├── mysql_connpool.c ├── mysql_data_stream.c ├── mysql_handler.c ├── mysql_protocol.c ├── mysql_session.c ├── network.c ├── perf.data ├── proxysqlHTTPd ├── proxysql_interactive_config.pl ├── threads.c ├── tokenizer.c └── utils.c └── tests ├── 1.c ├── Makefile ├── connect_speed ├── connect_speed.c ├── reconnect.c ├── sysbench.txt └── tests.cnf /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renecannao/proxysql-old/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renecannao/proxysql-old/HEAD/LICENSE -------------------------------------------------------------------------------- /README.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renecannao/proxysql-old/HEAD/README.rst -------------------------------------------------------------------------------- /include/admin_sqlite.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renecannao/proxysql-old/HEAD/include/admin_sqlite.h -------------------------------------------------------------------------------- /include/debug.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renecannao/proxysql-old/HEAD/include/debug.h -------------------------------------------------------------------------------- /include/external.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renecannao/proxysql-old/HEAD/include/external.h -------------------------------------------------------------------------------- /include/fundadb.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renecannao/proxysql-old/HEAD/include/fundadb.h -------------------------------------------------------------------------------- /include/global_variables.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renecannao/proxysql-old/HEAD/include/global_variables.h -------------------------------------------------------------------------------- /include/lutils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renecannao/proxysql-old/HEAD/include/lutils.h -------------------------------------------------------------------------------- /include/mysql_protocol.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renecannao/proxysql-old/HEAD/include/mysql_protocol.h -------------------------------------------------------------------------------- /include/proxysql.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renecannao/proxysql-old/HEAD/include/proxysql.h -------------------------------------------------------------------------------- /include/proxysql_macros.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renecannao/proxysql-old/HEAD/include/proxysql_macros.h -------------------------------------------------------------------------------- /include/structs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renecannao/proxysql-old/HEAD/include/structs.h -------------------------------------------------------------------------------- /sqlite3/shell.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renecannao/proxysql-old/HEAD/sqlite3/shell.c -------------------------------------------------------------------------------- /sqlite3/sqlite3.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renecannao/proxysql-old/HEAD/sqlite3/sqlite3.c -------------------------------------------------------------------------------- /sqlite3/sqlite3.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renecannao/proxysql-old/HEAD/sqlite3/sqlite3.h -------------------------------------------------------------------------------- /src/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renecannao/proxysql-old/HEAD/src/Makefile -------------------------------------------------------------------------------- /src/Makefile_nostatic: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renecannao/proxysql-old/HEAD/src/Makefile_nostatic -------------------------------------------------------------------------------- /src/admin.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renecannao/proxysql-old/HEAD/src/admin.c -------------------------------------------------------------------------------- /src/admin_sqlite.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renecannao/proxysql-old/HEAD/src/admin_sqlite.c -------------------------------------------------------------------------------- /src/debug.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renecannao/proxysql-old/HEAD/src/debug.c -------------------------------------------------------------------------------- /src/fundadb_hash.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renecannao/proxysql-old/HEAD/src/fundadb_hash.c -------------------------------------------------------------------------------- /src/global_variables.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renecannao/proxysql-old/HEAD/src/global_variables.c -------------------------------------------------------------------------------- /src/l_utils.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renecannao/proxysql-old/HEAD/src/l_utils.c -------------------------------------------------------------------------------- /src/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renecannao/proxysql-old/HEAD/src/main.c -------------------------------------------------------------------------------- /src/mysql_backend.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renecannao/proxysql-old/HEAD/src/mysql_backend.c -------------------------------------------------------------------------------- /src/mysql_connpool.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renecannao/proxysql-old/HEAD/src/mysql_connpool.c -------------------------------------------------------------------------------- /src/mysql_data_stream.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renecannao/proxysql-old/HEAD/src/mysql_data_stream.c -------------------------------------------------------------------------------- /src/mysql_handler.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renecannao/proxysql-old/HEAD/src/mysql_handler.c -------------------------------------------------------------------------------- /src/mysql_protocol.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renecannao/proxysql-old/HEAD/src/mysql_protocol.c -------------------------------------------------------------------------------- /src/mysql_session.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renecannao/proxysql-old/HEAD/src/mysql_session.c -------------------------------------------------------------------------------- /src/network.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renecannao/proxysql-old/HEAD/src/network.c -------------------------------------------------------------------------------- /src/perf.data: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/proxysqlHTTPd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renecannao/proxysql-old/HEAD/src/proxysqlHTTPd -------------------------------------------------------------------------------- /src/proxysql_interactive_config.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renecannao/proxysql-old/HEAD/src/proxysql_interactive_config.pl -------------------------------------------------------------------------------- /src/threads.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renecannao/proxysql-old/HEAD/src/threads.c -------------------------------------------------------------------------------- /src/tokenizer.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renecannao/proxysql-old/HEAD/src/tokenizer.c -------------------------------------------------------------------------------- /src/utils.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renecannao/proxysql-old/HEAD/src/utils.c -------------------------------------------------------------------------------- /tests/1.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renecannao/proxysql-old/HEAD/tests/1.c -------------------------------------------------------------------------------- /tests/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renecannao/proxysql-old/HEAD/tests/Makefile -------------------------------------------------------------------------------- /tests/connect_speed: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renecannao/proxysql-old/HEAD/tests/connect_speed -------------------------------------------------------------------------------- /tests/connect_speed.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renecannao/proxysql-old/HEAD/tests/connect_speed.c -------------------------------------------------------------------------------- /tests/reconnect.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renecannao/proxysql-old/HEAD/tests/reconnect.c -------------------------------------------------------------------------------- /tests/sysbench.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renecannao/proxysql-old/HEAD/tests/sysbench.txt -------------------------------------------------------------------------------- /tests/tests.cnf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renecannao/proxysql-old/HEAD/tests/tests.cnf --------------------------------------------------------------------------------