Hi all,
How to cache a stateless session bean?
Do we need to edit the property file for weblogic server for that?
-
to cache the stateless session bean (3 messages)
- Posted by: Ramasubramanian Balasubramanian
- Posted on: February 15 2001 13:08 EST
Threaded Messages (3)
- to cache the stateless session bean by Dave Wolf on February 15 2001 13:54 EST
- to cache the stateless session bean by Carson Lam on February 15 2001 23:11 EST
- to cache the stateless session bean by Ajeet Koru on February 16 2001 02:28 EST
- to cache the stateless session bean by Carson Lam on February 15 2001 23:11 EST
-
to cache the stateless session bean[ Go to top ]
- Posted by: Dave Wolf
- Posted on: February 15 2001 13:54 EST
- in response to Ramasubramanian Balasubramanian
According to the EJB spec all stateless sessions are automatically cached.
Dave Wolf
Internet Applications Division
Sybase
-
to cache the stateless session bean[ Go to top ]
- Posted by: Carson Lam
- Posted on: February 15 2001 23:11 EST
- in response to Dave Wolf
Would you please explain more about the caching issue? -
to cache the stateless session bean[ Go to top ]
- Posted by: Ajeet Koru
- Posted on: February 16 2001 14:28 EST
- in response to Carson Lam
In Weblogic you could control the maximum beans cached by the DD. Sample from weblogic pages:
<weblogic-enterprise-bean>
<ejb-name>AccountBean</ejb-name>
<entity-descriptor>
<entity-cache>
<max-beans-in-cache>200</max-beans-in-cache>
</entity-cache>
</entity-descriptor>
</weblogic-enterprise-bean>
Regards
Ajeet Koru