Would be really grateful for any help -
1) Now I am doing evaluation of several OMR products and Hibernate seems to be the best. But our project badly needs some caching. As far as I understand Hibernate supports 3 caching strategies for process (JVM) level cache - read-write, nonstrict-read-write and read-only. I understand the purpose of each strategy but could not find any description of implementation. For example, at what point records get added to chache, get locked etc., what happens when we use read-only strategy but try to modify an object....? What is implementation difference between read-write and nonstrict-read-write strategies....?
Whould be really nice if somebody can give me a link with good description.
Also can anybody please advise how to deal with distributed (cluster-level) cache synchronization problem?
2) I have the same problem as described in
http://forum.hibernate.org/viewtopic.ph ... criminator
can anybody please advise any workaround?