老实说, 要做到在JDBC查询之前决定哪些数据需要从JDBC来还是CACHE来不是件容易事. 但是HIBERNATE还是很好地完成了这个任务. QueryCache用来缓存查询语句, 及查询结果集中对象的Identifier与Type. 当再次使用已缓存的Query时, 就可以通过对象的Identifier与Type在SECOND LEVEL CACHE中查找实际的对象.
使用hibernate中的QueryCache时需要在hibernate配置文件中设置如下属性:
阿拉山口网站制作公司哪家好,找创新互联!从网页设计、网站建设、微信开发、APP开发、成都响应式网站建设等网站项目制作,到程序开发,运营维护。创新互联于2013年开始到现在10年的时间,我们拥有了丰富的建站经验和运维经验,来保证我们的工作的顺利进行。专注于网站建设就选创新互联。
- < property name="cache.provider_class">
- org.hibernate.cache.HashtableCacheProvider
- < /property>
- < property name="hibernate.cache.use_query_cache">true< /property>
建立ehcache的配置文件ehcache.xml放在classpath下
- < ehcache>
- < diskStore path="java.io.tmpdir"/>
- < defaultCache
- maxElementsInMemory="10000"
- eternal="false"
- timeToIdleSeconds="120"
- timeToLiveSeconds="120"
- overflowToDisk="true"
- />
- < cache name="com.fhway.hibernate.bean.Employee"
- maxElementsInMemory="10"
- eternal="false"
- timeToIdleSeconds="100"
- timeToLiveSeconds="100"
- overflowToDisk="false"
- />
- < cache name="com.fhway.hibernate.bean.Department"
- maxElementsInMemory="10"
- eternal="false"
- timeToIdleSeconds="100"
- timeToLiveSeconds="100"
- overflowToDisk="false"
- />
- < /ehcache>
在配置文件里面要加入< cache>
如
- < class name="com.fhway.hibernate.bean.Employee " table=" Employee ">
- < cache usage="read-only"/>
可以设定的策略包括read-only、read-write、nonstrict-read-write与transactional,并不是每一个第三方快取实现都支持所有的选项,每一个选项的使用时机与支持的产品,可以直接参考Hibernate官方参考快册的 20.2.The Second Level Cache;
在程序中需要为Query对象设置Cachable属性:
- Query query = sess.createQuery("from Employee as employee");
- query.setCacheable(true);
- List employees = (List) query.list();
- Iterator iterator = employees.iterator();
- while(iterator.hasNext()){
- System.out.println((Employee) iterator.next());
- }
- Query query1 = sess.createQuery("from Employee as employee");
- query1.setCacheable(true);
- List employees1 = (List) query1.list();
- Iterator iterator1 = employee1.iterator();
- while(iterator1.hasNext()){
- System.out.println((Employee) iterator1.next());
- }
- Employee goncha = (Employee) sess.load(Employee.class, "001");
- System.out.println(goncha);
当你调用以上代码时你会发现这样的输出:
- Hibernate: select employee0_.ID as ID, employee0_.NAME as NAME0_, employee0_.DEPNO0 as DEPNO0_ from AFLYER.EMPLOYEE employee0_
- com.fhway.hibernate.bean.Employee@e020c9
- com.fhway.hibernate.bean.Employee@117f31e
- com.fhway.hibernate.bean.Employee@bad8a8
- com.fhway.hibernate.bean.Employee@104c575
- com.fhway.hibernate.bean.Employee@e020c9
- com.fhway.hibernate.bean.Employee@117f31e
- com.fhway.hibernate.bean.Employee@bad8a8
- com.fhway.hibernate.bean.Employee@104c575
- com.fhway.hibernate.bean.Employee@e020c9
很显然 该缓存的利用方式对Query和load()方式有效!
Query上有list()与iterator()方法,两者的差别在于list()方法在读取数据时,并不会利用到快取,而是直接再向数据库查询,而iterator()则将读取到的数据写到快取,并于读取时再次利用。(Blob 不能使用cache)
当前标题:使用Hibernate的Querycache
浏览路径:http://www.mswzjz.cn/qtweb/news2/42702.html
攀枝花网站建设、攀枝花网站运维推广公司-贝锐智能,是专注品牌与效果的网络营销公司;服务项目有等
声明:本网站发布的内容(图片、视频和文字)以用户投稿、用户转载内容为主,如果涉及侵权请尽快告知,我们将会在第一时间删除。文章观点不代表本网站立场,如需处理请联系客服。电话:028-86922220;邮箱:631063699@qq.com。内容未经允许不得转载,或转载时需注明来源: 贝锐智能
贝锐智能技术为您推荐以下文章