Re: weblogic threads
Posted by ErmanArslansOracleBlog on
URL: http://erman-arslan-s-oracle-forum.114.s1.nabble.com/weblogic-threads-tp8199p8204.html
If your applications runs concurrently, the maximum capacity of the datasource should match the thread-count.. This way, none of your application threads will wait for an usable connection and none of them will wait for other threads return their connections.
Ofcourse , the value of maximum thread constraint should also match this value. Maximum thread constratint sets a maximum number of possible concurrent application threads/executions.
Note that, if you have lots of concurrent threads then you may end up with out of memory errors.