Uncode-Cache使用文檔

2018-07-18 09:30 更新

uncode-cache

基于redis和ehcache的兩級緩存組件,支持spring-boot,使用方便,有管理頁面。

功能概述

  1. 統(tǒng)一注解支持
  2. 可以設置緩存定時自動更新時間
  3. 可以緩存預熱
  4. 可以設置緩存依賴消除
  5. 可以添加監(jiān)聽,使用實現(xiàn)命中率、讀/寫耗時等

spring boot

1. application.peroperties

uncode.cache.redisClusterAddress=127.0.0.1:7000;127.0.0.1:7001;127.0.0.1:7002;127.0.0.1:7003;127.0.0.1:7004;127.0.0.1:7005
uncode.cache.redisPoolMaxIdle=
uncode.cache.redisPoolMinIdle =
uncode.cache.redisPoolMaxTotal=
uncode.cache.redisPoolMaxWaitMillis=
uncode.cache.redisClusterTimeout=
uncode.cache.redisClusterMaxRedirections=
uncode.cache.redisClusterPassword
uncode.cache.scanPackage=cn.uncode.cache
uncode.cache.useLocal=true
uncode.cache.openCacheLog=false
uncode.cache.storeRegion=uncode-cache-demo

2. spring boot啟動類

@SpringBootApplication
@EnableAspectJAutoProxy
public class Application {
    public static void main(String[] agrs){
        SpringApplication.run(Application.class,agrs);
    }
}

spring配置

 
     
     
         
            classpath:config.properties 
         
    
 

核心注解

@Cache(
    preload = true,//是否需要緩存預熱,會在系統(tǒng)啟動時自已加載,支持特殊場景
    preloadParameters = {"param1", "param2"},//加載方法參數(shù),目前只支持String
    expiredTime = 60,//緩存有效時間,單位秒
    cleanTimeExpressions = "0 15 10 ?  ",//緩存定時清除時間表達式,如:每天10點15分觸發(fā)
    cacheCleans={//依賴清除bean定義,當該方法被調(diào)用時清除當前緩存,可定義多個
        @CacheClean(
            beanName="couriersService6",//bean名稱
            methodName="updateCourierPwd"http://方法名稱
        )
    }
)
public User getUserById(){...}

工具類

可以直接使用cn.uncode.cache.CacheUtils工具類。

管理頁面

以spring-boot方式啟動cn.uncode.cache.springboot.Application類,訪問http://localhost:8808/static/index.html

輸入圖片說明

關(guān)于

作者:冶衛(wèi)軍(ywj_316@qq.com,微信:yeweijun)

技術(shù)支持QQ群:47306892

Copyright 2018 www.uncode.cn

特別說明

本項目使用了部分開源項目代碼,保留了原作者的名稱和所有內(nèi)容,同時向作者致敬。


以上內(nèi)容是否對您有幫助:
在線筆記
App下載
App下載

掃描二維碼

下載編程獅App

公眾號
微信公眾號

編程獅公眾號