码迷,mamicode.com
首页 > 编程语言 > 详细

springboot 整合GuavaCache缓存

时间:2020-02-17 00:45:08      阅读:117      评论:0      收藏:0      [点我收藏+]

标签:seconds   接口   color   pre   public   org   查询   ext   imp   

   缓存的主要作用是暂时在内存中保存业务系统的数据处理结果,并且等待下次访问使用。对于那些频繁需要查询比对的热点数据,我们采用使用缓存。

   GuavaCache是google出品的内存缓存工具。对于数据量较小的,几条,几十条数据,而且需要加缓存的接口较少,建议使用Google提供的guava Cache,它简单易用的同时,性能也好. 而且线程安全。

   GuavaCache和Map的使用方式差不多,put与get存放key和获取值,可以设置存活时间。

    如果存储上千万条数据或进行分布式缓存选择redis。

     

pom.xml配置文件:

<dependency>
    <groupId>org.springframework.boot</groupId>
    <artifactId>spring-boot-starter-cache</artifactId>
    <version>1.5.9.RELEASE</version>
</dependency>

<dependency>
    <groupId>com.google.guava</groupId>
    <artifactId>guava</artifactId>
    <version>19.0</version>
</dependency>

 

java代码:

/**
 * Copyright (c) 2020, All Rights Reserved.
 *
*/

package com.demo.server.config;

import java.util.concurrent.TimeUnit;

import org.springframework.cache.CacheManager;
import org.springframework.cache.annotation.EnableCaching;
import org.springframework.cache.guava.GuavaCacheManager;
import org.springframework.context.annotation.Bean;
import org.springframework.context.annotation.Configuration;

import com.google.common.cache.CacheBuilder;


@Configuration
@EnableCaching
public class GuavaCacheConfig {
    
    @Bean
    public CacheManager cacheManager() { 
        GuavaCacheManager cacheManager = new GuavaCacheManager();
        cacheManager.setCacheBuilder(
            CacheBuilder.newBuilder().
            expireAfterWrite(10, TimeUnit.SECONDS). //存活时间10秒
            maximumSize(1000));     //最大线程数
        return cacheManager;
    }

}

 

springboot 整合GuavaCache缓存

标签:seconds   接口   color   pre   public   org   查询   ext   imp   

原文地址:https://www.cnblogs.com/chong-zuo3322/p/12319639.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!