http://qb5.2ch.net/test/read.cgi/operate/1175082659/794,804
の話ですが,speedy プロセス呼び出しの形で使う分には現状でも問題ないですが,
mod_speedycgi を使うとなると問題なんですよね.で,

    /* Two problems with threaded mpms:
     *
     *  Persistent routines are not thread safe.  We can workaround that with a big
     *  lock, though that may cause excessive waiting when Maxbackends
     *  is used.
     *
     *  Frontends are sent SIGALRM to wake them up, and signals don't get
     *  delivered to the waiting thread.
     */

ということのようなので,とりあえずはシグナル以外の手段でワーカスレッドを
励起させられるようにしなければ,ってところかな.さらに,コンカレンシーを
向上させるためにデカいロックを使わずに済むようにできればなお良い,と.