You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
WL#6606: Offload THD initialization and network initialization
to worker thread
Follow-up patch.
This patch improves the separation between thread_pool (plugins)
and the server. Instead of having thread_pool extend a pure
virtual superclass from the server, a special plugin connection
handler now exists in the server. This connection handler is
instantiated by the thread_pool with a set of pointer to global,
free functions. These functions are then called by the server
e.g. when a new client connects.
The patch also reduces the scope of LOCK_thread_count inside
thread_pool and makes Connection_handler_mananager::max_threads
static and public so that it can be accessed without valid
manager instance.
0 commit comments