谁能用简单的话解释一下 Hibernate/NHibernate 中的一级缓存和二级缓存是什么?

答案

1.1)一级缓存

First-level cache 始终与Session object

1.2)二级缓存

Second-level cache 总是与Session Factory object

引用自:http://javabeat.net/introduction-to-hibernate-caching/

来自: stackoverflow.com