zoukankan      html  css  js  c++  java
  • cache

    二级缓存

    <mapper namespace="com.abc.dao.IStudentDao">
        
        <!-- 开启二级缓存 -->
        <cache size="512" eviction="LRU" flushInterval="100000"/>
    
        <insert id="insertStudent" flushCache="false">
            insert into student(name,age,score) values(#{name}, #{age}, #{score})
        </insert>
        
        <delete id="deleteById">
            delete from student where id=#{xxx}
        </delete>
        
        <update id="updateStudent">
            update student set name=#{name}, age=#{age}, score=#{score} where id=#{id}
        </update>
        
        <select id="selectStudentById" resultType="Student">
            select id,name,age,score from student where id=#{ooo}
        </select>
        
        <select id="selectStudentById2" resultType="Student">
            select id,name,age,score from student where id=#{ooo}
        </select>
        
    </mapper>
    <mapper namespace="com.abc.dao.IStudentDao">
        
        <!-- 开启二级缓存 -->
        <cache type="org.mybatis.caches.ehcache.EhcacheCache">
            <property name="maxElementsInMemory" value="1000"/>
            <property name="timeToLiveSeconds" value="240"/>
        </cache>
    
        <insert id="insertStudent" flushCache="false">
            insert into student(name,age,score) values(#{name}, #{age}, #{score})
        </insert>
        
        <delete id="deleteById">
            delete from student where id=#{xxx}
        </delete>
        
        <update id="updateStudent">
            update student set name=#{name}, age=#{age}, score=#{score} where id=#{id}
        </update>
        
        <select id="selectStudentById" resultType="Student" useCache="false">
            select id,name,age,score from student where id=#{ooo}
        </select>
        
        <select id="selectStudentById2" resultType="Student">
            select id,name,age,score from student where id=#{ooo}
        </select>
        
    </mapper>
  • 相关阅读:
    local 不能解析为127.0.0.1
    完全使用接口方式调用WCF 服务
    【人生】自己对于求职应聘的一些感受
    OO的经典例子
    剪刀、石头、布机器人比赛
    TextTree 文本资料收集轻量级工具
    两个代替重复输入的小工具
    桌面助手 Desktop Helper 自动帮你关闭指定的窗口
    磁盘可用空间平衡
    用C#制造可以继承的“枚举”
  • 原文地址:https://www.cnblogs.com/csslcww/p/9912403.html
Copyright © 2011-2022 走看看