Does the weblogic create threads for each call to the Session Bean. So if 100 Session Beans or Entity Beans are there will Weblogic create 100 separate threads. Or is there any other way the weblogic handles this.Any answer to this would be appreciate.
Thanks,
java king
-
weblogic thread (2 messages)
- Posted by: Praveen Chandrabhanu
- Posted on: August 12 2002 15:08 EDT
Threaded Messages (2)
- weblogic thread by William Kemp on August 12 2002 18:49 EDT
- weblogic thread by Praveen Chandrabhanu on January 08 2003 13:39 EST
-
weblogic thread[ Go to top ]
- Posted by: William Kemp
- Posted on: August 12 2002 18:49 EDT
- in response to Praveen Chandrabhanu
<quote>
Does the weblogic create threads for each call to the Session Bean. So if 100 Session Beans or Entity Beans are there will Weblogic create 100 separate threads. Or is there any other way the weblogic handles this.Any answer to this would be appreciate
<quote>
WLS does not create an execute thread for each call to a Session Bean. WebLogic creates a pool of execute threads with a number specified at configuration/startup time. Each request is queued and processed by a free thread from this configured execute thread pool. See:
http://e-docs.bea.com/wls/docs70/perform/WLSTuning.html#1112343
Bill -
weblogic thread[ Go to top ]
- Posted by: Praveen Chandrabhanu
- Posted on: January 08 2003 13:39 EST
- in response to William Kemp
Thank you bill. I really appreciate ur time and effort