Currently, I'm working on a socket server in Perl. The server accepts a client, and listens for an array of commands that sometimes may get or set values in a MySQL table (about 45 - 65% of the time, not always). The server will have quite a few clients connected and using it at once (100+).
My question (as you can tell from the title) is: Should I use asynchronous MySQL queries? I know I may get a benefit from using asynchronous MySQL on queries that I don't need to get any output from (where I set values, etc), but would a query with output really take enough time that I would need asynchronous MySQL?