-
Entity beans and Caching services (1 messages)
- Posted by: Jen R
- Posted on: May 11 2004 19:18 EDT
If I leverage EJBs, esp entity beans. What type of caching servies do I get by default? Thanks.Threaded Messages (1)
- Entity beans and Caching services by Paul Strack on May 11 2004 19:42 EDT
-
Entity beans and Caching services[ Go to top ]
- Posted by: Paul Strack
- Posted on: May 11 2004 19:42 EDT
- in response to Jen R
It depends on your EJB server. Most EJB servers support a variety of caching strategies, depending upon the degree of control you have over the database. Common strategies include:
* Cached forever (if your EJB application is the only application interacting with the database)
* Cached for a single transaction (if other applications manipulate database data).
* No caching (for messed up situation).