leora
leora

Reputation: 196539

what are the factors when choosing a solution for nhibernate second level caching

i see in this article, its easy to setup the syscache option, but i wanted to see if there was a pro / con list of the other options for second level cache (memcache, velocity, syscache2, prevalence, etc . .) to make sure i am making the right choice.

Upvotes: 2

Views: 313

Answers (1)

James Webster
James Webster

Reputation: 4104

Relative performance compared to other equivalent caches would be one consideration. Also whether the cache is appropriate for deployment in your app (e.g. syscache relies upon ASP.NET so would be no good in a desktop app).

Also, do you require your 2nd-level cache to be distributed or not? In that case you will need to look at an option such as Velocity that supports distribution.

The answer to this question discusses the pros & cons of using NCache.

Upvotes: 2

Related Questions