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?

link|improve this question

51% accept rate
feedback

2 Answers

Article http://jan.kneschke.de/2008/9/9/async-mysql-queries-with-c-api/ answers the question. Works with MySQL 5.6.

link|improve this answer
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.

link|improve this answer
there are 7 requests to db, only 2 of them are slow ones, others are using different tables and are really simple (executed immediately). Its impossible to optimize them even more, they're checking almost 300k records (data transfer logs), so my issue is with just this multiplexation. Nothing else. – Daniel Sep 16 '11 at 10:15
@Daniel: 300k records isn't very much at all. If this makes "everything stall" then something is very wrong with your queries and indexes. That is your problem. Nothing else. – Lightness Races in Orbit Sep 16 '11 at 10:16
(As I already stated, arbitrarily multiplexing a connection to your database won't make the database perform any faster. All you're going to do is break stuff.) – Lightness Races in Orbit Sep 16 '11 at 10:17
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.