"how to delete sleep process in mysql" Code Answer

5

why would you want to delete a sleeping thread? mysql creates threads for connection requests, and when the client disconnects the thread is put back into the cache and waits for another connection.

this reduces a lot of overhead of creating threads 'on-demand', and it's nothing to worry about. a sleeping thread uses about 256k of memory.

By Ankit Suhail on October 8 2022

Answers related to “how to delete sleep process in mysql”

Only authorized users can answer the Search term. Please sign in first, or register a free account.