Re: [JBoss-user] EJB Caching Option A

2002-12-05 Thread Lennart Petersson
torsdagen den 5 december 2002 kl 07.33 skrev Rahul Raj: Option A caches an EJB instance and does not synchronize ejb state with the db between transactions. So the changed data in the EJB may not be reflected in db. You don't have changed data in the EJB if you are 'between transactions'.

[JBoss-user] EJB Caching Option A

2002-12-04 Thread Rahul Raj
Option A caches an EJB instance and does not synchronize ejb state with the db between transactions. So the changed data in the EJB may not be reflected in db. What happens if the data is not synchronized and 1)due to some reasons there occurs some network failure between EJB server and DB se