hibernate二级缓存ehcache的put原理

本文深入探讨了hibernate使用ehcache进行二级缓存时,当内存缓存满后如何将数据存入磁盘的过程。在内存满载时,ehcache会进行短暂的sleep,然后将数据转换为PlaceHolder存储到DiskStore,并通过PersistentDiskWriteTask异步写入磁盘。当从DiskStore读取或移除数据时,会涉及DiskMarker和Element的交互。若出现加载速度慢的情况,可通过增大diskSpoolBufferSizeMB配置来优化。
摘要由CSDN通过智能技术生成

此文只对磁盘缓存方式进行展述

     hibernate执行sql,将数据转化为映射实体类后会进行数据缓存,其中调用AbstractRowReader#performTwoPhaseLoad方法时,会循环数据集,调用TwoPhaseLoad.initializeEntity();该方法会调用ehcache的put方法进行数据缓存。
    ehcache在put数据实例(数据实例已转化为Element实例对象),该对象到磁盘时(此时内存缓存已满,按照ehcache.xml中设定的策略,超过部分存储在磁盘),会判断当前disk store spool is full,如果已满,需进行50ms的sleep,降低生产线程放入的速度。

Cache.class

/**
     * Put an element in the cache.
     * <p/>
     * Resets the access statistics on the element, which would be the case if it has previously been
     * gotten from a cache, and is now being put back.
     * <p/>
     * Also notifies the CacheEventListener that:
     * <ul>
     * <li>the element was put, but only if the Element was actually put.
     * <li>if the element exists in the cache, that an update has occurred, even if the element would be expired
     * if it wa
  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值