Hi,
I'm writing an application that will be deployed as a thick-client (NHibernate deployed on the client). The application consists of a number of loosely coupled components that access data independently which is somewhat inefficient.
Therefore I would like to use a process-wide 2nd-level cache. However, the SysCache seems targeted towards web applications, and I've read that the Prevalence cache is very slow (
http://forum.hibernate.org/viewtopic.ph ... ence+cache).
Are there any cache implementations suitable for a thick-client?
Also, in the docs it says:
Quote:
Alternatively (preferrably?), you may specify <class-cache> and <collection-cache> elements in hibernate.cfg.xml
Does this mean that you can specify the cache globally, rather than on a per class/collection basis?
Thanks,
jr