vaidyanathan_g wrote:

> Hi,
>
> If there a 8-way server is there any  specific way programming to be done to
> make use of that or will servlets/jsp will take care of the parallel multi
> processing automatically?
>

This depends on your JVM's implementation of threads.  Generally, implementations
that run "native threads" will take advantage of multiprocessors within a single
JVM instance, while implementations that run "green threads" will not.  If you've
got a native threads implementation, and you've configured your servlet container
to use it, nothing else inside your servlets or JSP pages is required (although
you'll need to follow all the usual precautions about multithread programs).
 Check the documentation on your JVM to know for sure.

>
> Thanks
>
> regards
>
> vaidy
>

Craig McClanahan

===========================================================================
To unsubscribe: mailto [EMAIL PROTECTED] with body: "signoff JSP-INTEREST".
Some relevant FAQs on JSP/Servlets can be found at:

 http://java.sun.com/products/jsp/faq.html
 http://www.esperanto.org.nz/jsp/jspfaq.html
 http://www.jguru.com/jguru/faq/faqpage.jsp?name=JSP
 http://www.jguru.com/jguru/faq/faqpage.jsp?name=Servlets

Reply via email to