I'm writing app that needs to commuicate with mysql. Its a single threaded application that uses epoll linux system call for multiplexing clients, but the problem is that everything stalls whenever I'm doing (heavy) queries to database. So I thought to get actual socket from mysql and put it into my epoll so I could multiplex database too. Is that possible?
|
feedback
|
|
Article http://jan.kneschke.de/2008/9/9/async-mysql-queries-with-c-api/ answers the question. Works with MySQL 5.6. | |||
|
feedback
|
|
It's a bit more complicated than that. If "everything stalls" (can only guess at what you technically mean by that) then your MySQL server is probably overloaded. Multiplexing a single connection is not only probably not going to work, but it's not going to get around that root issue, either. Instead, fix your queries and indexes so that no huge table scans and filesorting occurs. | |||||||
feedback
|