开发者

How does Query caching improves performance in nHibernate?

开发者 https://www.devze.com 2022-12-21 21:38 出处:网络
How does query ca开发者_StackOverflow中文版ching works and how does it improves performance in nHibernate?When a query is cached, NHibernate will cache the IDs of the entities resulting from the query

How does query ca开发者_StackOverflow中文版ching works and how does it improves performance in nHibernate?


When a query is cached, NHibernate will cache the IDs of the entities resulting from the query.

Very importantly, it does not cache the entities themselves - only their IDs. This means that you almost certainly want to ensure that those entities are also set to be cachable in your second level cache. Otherwise, NHiberate will get the IDs of the entities from the query cache, but then be forced to go to the database to get the actual entities. That could be more costly than just going to the database in the first place!

Also important: queries are cached based on their exact SQL and parameter values. Any differences in either of those will mean that the database will be hit. So you probably only want to cache those queries that have little variance in their inputs.


When you enable the caching the nHibernate will store query results somewhere inside when you execute query. When you try to execute query with SAME parameters again it will get results from cache, not from database, and of course it is much faster! but beware that other apps can modify database in background! But nHibernate can update caches.


By using it nHibernate doesn't need to access the Data store it access whats in the cache.

0

精彩评论

暂无评论...
验证码 换一张
取 消

关注公众号