Using WLS 8.1 Threading Model in WLS 9.x / 10.x
The flag that brings back execute queues in WLS 9.x and later
If in the past (versions prior to WLS 9.x) you have been using execute queues to improve performance of your applications , you may still continue avail the flexibility of 8.1 style execute queues by following the below given steps:
1. manually add the following in the config.xml:
1. Add the following in JAVA_OPTIONS : -Dweblogic.Use81StyleExecuteQueues=true
2. Start the weblogic server
-
-
On adding this parameter you will see a tab names ‘QUEUES’ under ‘Server > configuration’ in the administration console
-
Create a new Queue named : weblogic.kernel.defaultNow you can edir the properties of the Queue in the similar manner you use to do it in WLS 8.1
-
This may come handy: http://download.oracle.com/docs/cd/E11035_01/wls100/perform/appb_queues.html#wp1048423
-
Cheers :)
Unni