io.github.haozi2015:autocache-spring-boot-starter

Auto cache data component

License

License

Categories

Categories

Spring Boot Container Microservices Auto Application Layer Libs Code Generators
GroupId

GroupId

io.github.haozi2015
ArtifactId

ArtifactId

autocache-spring-boot-starter
Last Version

Last Version

1.0.5
Release Date

Release Date

Type

Type

jar
Description

Description

Auto cache data component

Download autocache-spring-boot-starter

How to add to project

<!-- https://jarcasting.com/artifacts/io.github.haozi2015/autocache-spring-boot-starter/ -->
<dependency>
    <groupId>io.github.haozi2015</groupId>
    <artifactId>autocache-spring-boot-starter</artifactId>
    <version>1.0.5</version>
</dependency>
// https://jarcasting.com/artifacts/io.github.haozi2015/autocache-spring-boot-starter/
implementation 'io.github.haozi2015:autocache-spring-boot-starter:1.0.5'
// https://jarcasting.com/artifacts/io.github.haozi2015/autocache-spring-boot-starter/
implementation ("io.github.haozi2015:autocache-spring-boot-starter:1.0.5")
'io.github.haozi2015:autocache-spring-boot-starter:jar:1.0.5'
<dependency org="io.github.haozi2015" name="autocache-spring-boot-starter" rev="1.0.5">
  <artifact name="autocache-spring-boot-starter" type="jar" />
</dependency>
@Grapes(
@Grab(group='io.github.haozi2015', module='autocache-spring-boot-starter', version='1.0.5')
)
libraryDependencies += "io.github.haozi2015" % "autocache-spring-boot-starter" % "1.0.5"
[io.github.haozi2015/autocache-spring-boot-starter "1.0.5"]

Dependencies

compile (3)

Group / Artifact Type Version
io.github.haozi2015 : autocache-core jar 1.0.5
org.springframework.boot : spring-boot-starter-data-redis jar 2.3.3.RELEASE
org.springframework.boot : spring-boot-starter-aop jar 2.3.3.RELEASE

Project Modules

There are no modules declared in this project.

autoCache

介绍

autoCache是一个Java轻量级的二级缓存组件。首先,autoCache 本身并无缓存功能,而是利用内存缓存caffeine和高性能数据库Redis,实现的二级缓存组件。 autoCache 解决高并发场景时缓存逻辑复杂的问题,以极简的方式实现缓存功能,提升系统性能、开发效率。

基本要求

  1. JDK 1.8+
  2. Spring boot 2.0+
  3. 添加依赖
<dependency>
  <groupId>io.github.haozi2015</groupId>
  <artifactId>autocache-spring-boot-starter</artifactId>
  <version>1.0.4</version>
</dependency>

使用说明

方法使用@AutoCache注解,即完成方法的参数和结果缓存。

    // 仅用本地缓存,5秒后过期
    @AutoCache(localTTL = 5)
    String getLocalStr() {
        return "abc";
    }

    // 仅用远程缓存
    @AutoCache(remoteTTL = 30)
    String getRemoteStr() {
        return "abc";
    }
            
    // 二级缓存
    // 优先本地缓存,不存在时查远程缓存,不存在是调用原方法,结果再依次被远程和本地缓存
    // 分别本地缓存5秒过期,远程缓存30秒过期
    @AutoCache(localTTL = 5, remoteTTL = 30)
    String getStr() {
        return "abc";
    }

远程缓存,配置Redis同SpringBoot方式。

更多功能

完整代码,参考demo

TODO

  1. 主动缓存功能
  2. 监控,访问量、命中率、miss率等
  3. 内存缓存的一致性问题

Versions

Version
1.0.5
1.0.4
1.0.3
1.0.2
1.0.1