On 3/22/06, Remy Maucherat <[EMAIL PROTECTED]> wrote:
> On 3/22/06, Rajeev Jha <[EMAIL PROTECTED]> wrote:
> > In our case,the servlet is interfacing to the back-end that sends
> > async events from time to time.
>
> As you may have noticed, the HTTP protocol (and the Servlet API) are
> not designed
On 3/22/06, Rajeev Jha <[EMAIL PROTECTED]> wrote:
> In our case,the servlet is interfacing to the back-end that sends
> async events from time to time.
As you may have noticed, the HTTP protocol (and the Servlet API) are
not designed for this kind of usage. You can try to hack your way
through if
On 3/17/06, David Rees <[EMAIL PROTECTED]> wrote:
> On 3/17/06, Leon Rosenberg <[EMAIL PROTECTED]> wrote:
> > >
> > > Have you tried it? ;)
> >
> > Yeah, and it didn't add any performance. However it helped to keep the
> > thread count low. But it was on 2.4.x kernel, where threads were an
> > issu
On 3/17/06, Leon Rosenberg <[EMAIL PROTECTED]> wrote:
> >
> > Have you tried it? ;)
>
> Yeah, and it didn't add any performance. However it helped to keep the
> thread count low. But it was on 2.4.x kernel, where threads were an
> issue, on 2.6.x its pointless (at least until you really has somethi
>
> Have you tried it? ;)
Yeah, and it didn't add any performance. However it helped to keep the
thread count low. But it was on 2.4.x kernel, where threads were an
issue, on 2.6.x its pointless (at least until you really has something
to cache :-) )
>
> -Dave
Leon
-
On 3/17/06, Leon Rosenberg <[EMAIL PROTECTED]> wrote:
> But pushing dynamic content with squid? I doubt it will work. However,
> squid is using select reads instead of tomcat's blocking reads, and
> could reduce the number of threads, but I have seriously doubts with
> keepalives, have you actually
On 3/17/06, David Rees <[EMAIL PROTECTED]> wrote:
> On 3/17/06, Rajeev Jha <[EMAIL PROTECTED]> wrote:
> > Then, the other bottle-neck is, integrating with apache. If we run
> > tomcat APJ APR and apache is the front end then apache would also be
> > hard pressed to do 1024 keep-alive connections.
On 3/17/06, Rajeev Jha <[EMAIL PROTECTED]> wrote:
> Then, the other bottle-neck is, integrating with apache. If we run
> tomcat APJ APR and apache is the front end then apache would also be
> hard pressed to do 1024 keep-alive connections. I can try event MPM or
> worker modules. Does this look ok