Hi,
I am new to Hibernate and was wondering if it is possible to create a write-only cache that is fault-tolerant.
Here is my need :
- my application makes no reads from the database (or everything is already cached)
- all writes to the database should be fault-tolerant, i.e. if the DB connection is not available (DB down) then temporarily store the writes on disk.
- when DB connection is back, flush all the writes that could not happen because the DB was down.
Does such a cache feature already exist?
Thanks for your help.
Julien
|