Hi, I'm using FastCGI with a web application that occasionally has to make slow (a few seconds) MySQL queries. With only one Ruby Thread acceptng connections all other requests are blocked by such a query; the solution could be to start multiple ruby processes, but this is a waste of memory (Amrita requires huge amounts); so I think it would be the best solution to use Ruby threads. Is that possible? Or do you have any other suggestions? Thanks Andreas