Mysqld is the main process of the MySQL server. It can be said that mysqld is the real core of MySQL, and all work is carried out around the mysqld process. So to dissect the behemoth mysql, the code of mysqld is the best breakthrough.
Everything starts from the familiar main() function. In fact, it starts from the mysqld_main() function. These codes are all in mysqld.cc. mysqld_main() then calls win_main)(). The win_main() function mainly does some initialization work.
After the initialization work is completed, MySQL is ready to accept connections. Then our protagonist Handle_connections_methods() function appears. The main job of this function is to create three new sub-processes, which accept connections in three ways: TCP/IP, named pipes, and shared memory. Under normal circumstances, customers use TCP/IP (socket) to connect to the MySQL server, which is the most flexible communication method. However, in the application environment of embedded software, the latter two communication methods need to be used.
Simplified handle_connections_methods() function:
static void handle_connections_methods() { mysql_mutex_lock(&LOCK_thread_count); mysql_cond_init(key_COND_handler_count, &COND_handler_count, NULL); handler_count=0; handler_count++; mysql_thread_create(key_thread_handle_con_namedpipes, &hThread, &connection_attrib, handle_connections_namedpipes, 0)); handler_count++; mysql_thread_create(key_thread_handle_con_sockets, &hThread, &connection_attrib, handle_connections_sockets_thread, 0)); handler_count++; mysql_thread_create(key_thread_handle_con_sharedmem, &hThread, &connection_attrib, handle_connections_shared_memory, 0)) while (handler_count > 0) mysql_cond_wait(&COND_handler_count, &LOCK_thread_count); mysql_mutex_unlock(&LOCK_thread_count); }
After creating three new threads, the handle_connectins_methods() function enters a long loop. It does not exit until all three connection threads have exited. Here I mainly look at the socket connection thread. Our research object is this handle_connections_sockets_thread. After this thread initializes itself, it directly calls handle_connections_sockets();
handle_connections_sockets() function uses select() to call the listening port of mysqld, and then waits for the client connection. After a client connects, a new THD type variable will be created in this function. This variable is a "social butterfly", starting from the connection establishment, to SQL syntax analysis, query execution, result return, etc. This variable is always there, and in short it is a very important variable.
There is also the structure struct st_vio, which is a transfer station for commands. A vio type structure is also defined in the "Social Butterfly" THD. The function of this structure is to read the communication content from the storage socket, and then assign its value to the vio variable of THD. The VIO type describes a request in detail, including the content of the request, time, socket address of the request, etc. What happens next is to pass this "social butterfly" to the service thread, and create_thread_to_handle_connection() implements this function.
The following is the deleted code
void create_thread_to_handle_connection(THD *thd) { if (cached_thread_count > wake_thread) { mysql_cond_signal(&COND_thread_cache); } else { mysql_thread_create(key_thread_one_connection, &thd->real_id, &connection_attrib, handle_one_connection, (void*) thd))); } }
This function will check whether there are idle cache threads (MySQL will not disconnect The subsequent service thread is destroyed immediately and cached instead), if there is one, use the cache thread, if not, create a new thread to serve the connection. At this point, a connection has entered the service thread, and the connection thread returns and continues to wait for the connection.
The following content is all implemented in the service thread. There is a very detailed code trace in "In-depth Understanding of MySQL". Interested students can take a look. I've attached the function calling sequence for reference.
handle_one_connection() mysql_thread_create() handle_one_connection() do_handle_one_connection() init_new_connection_thread() init_new_connection_handler_thread() do_command() dispatch_command() mysql_parse() mysql_execuate_command()
The above is the analysis of the MySQL server connection process. For more related content, please pay attention to the PHP Chinese website (www.php.cn)!

本篇文章给大家带来了关于mysql的相关知识,其中主要介绍了关于架构原理的相关内容,MySQL Server架构自顶向下大致可以分网络连接层、服务层、存储引擎层和系统文件层,下面一起来看一下,希望对大家有帮助。

mysql的msi与zip版本的区别:1、zip包含的安装程序是一种主动安装,而msi包含的是被installer所用的安装文件以提交请求的方式安装;2、zip是一种数据压缩和文档存储的文件格式,msi是微软格式的安装包。

方法:1、利用right函数,语法为“update 表名 set 指定字段 = right(指定字段, length(指定字段)-1)...”;2、利用substring函数,语法为“select substring(指定字段,2)..”。

在mysql中,可以利用char()和REPLACE()函数来替换换行符;REPLACE()函数可以用新字符串替换列中的换行符,而换行符可使用“char(13)”来表示,语法为“replace(字段名,char(13),'新字符串') ”。

转换方法:1、利用cast函数,语法“select * from 表名 order by cast(字段名 as SIGNED)”;2、利用“select * from 表名 order by CONVERT(字段名,SIGNED)”语句。

本篇文章给大家带来了关于mysql的相关知识,其中主要介绍了关于MySQL复制技术的相关问题,包括了异步复制、半同步复制等等内容,下面一起来看一下,希望对大家有帮助。

在mysql中,可以利用REGEXP运算符判断数据是否是数字类型,语法为“String REGEXP '[^0-9.]'”;该运算符是正则表达式的缩写,若数据字符中含有数字时,返回的结果是true,反之返回的结果是false。

本篇文章给大家带来了关于mysql的相关知识,其中主要介绍了mysql高级篇的一些问题,包括了索引是什么、索引底层实现等等问题,下面一起来看一下,希望对大家有帮助。


Hot AI Tools

Undresser.AI Undress
AI-powered app for creating realistic nude photos

AI Clothes Remover
Online AI tool for removing clothes from photos.

Undress AI Tool
Undress images for free

Clothoff.io
AI clothes remover

AI Hentai Generator
Generate AI Hentai for free.

Hot Article

Hot Tools

mPDF
mPDF is a PHP library that can generate PDF files from UTF-8 encoded HTML. The original author, Ian Back, wrote mPDF to output PDF files "on the fly" from his website and handle different languages. It is slower than original scripts like HTML2FPDF and produces larger files when using Unicode fonts, but supports CSS styles etc. and has a lot of enhancements. Supports almost all languages, including RTL (Arabic and Hebrew) and CJK (Chinese, Japanese and Korean). Supports nested block-level elements (such as P, DIV),

MantisBT
Mantis is an easy-to-deploy web-based defect tracking tool designed to aid in product defect tracking. It requires PHP, MySQL and a web server. Check out our demo and hosting services.

SAP NetWeaver Server Adapter for Eclipse
Integrate Eclipse with SAP NetWeaver application server.

Atom editor mac version download
The most popular open source editor

MinGW - Minimalist GNU for Windows
This project is in the process of being migrated to osdn.net/projects/mingw, you can continue to follow us there. MinGW: A native Windows port of the GNU Compiler Collection (GCC), freely distributable import libraries and header files for building native Windows applications; includes extensions to the MSVC runtime to support C99 functionality. All MinGW software can run on 64-bit Windows platforms.
