中文字幕av专区_日韩电影在线播放_精品国产精品久久一区免费式_av在线免费观看网站

溫馨提示×

溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊×
其他方式登錄
點擊 登錄注冊 即表示同意《億速云用戶服務條款》

如何使用注解實現Redis緩存功能

發布時間:2022-07-29 09:49:16 來源:億速云 閱讀:137 作者:iii 欄目:開發技術

這篇文章主要介紹了如何使用注解實現Redis緩存功能的相關知識,內容詳細易懂,操作簡單快捷,具有一定借鑒價值,相信大家閱讀完這篇如何使用注解實現Redis緩存功能文章都會有所收獲,下面我們一起來看看吧。

c語言編寫的key,value存儲系統(區別于MySQL的二維表格的形式存儲。)

rdb:周期性的持久化

aof:以日志形式追加

默認rdb開啟,同時開啟使用aof

數據類型:string、list、set、zset、hash、

bitMaps 字節形式存儲、geospatial 經緯度類型...

單線程:采用多路io復用實現高并發

使用:

添加依賴

<!-- redis -->
<dependency>
 <groupId>org.springframework.boot</groupId>
 <artifactId>spring-boot-starter-data-redis</artifactId>
</dependency>
<!-- spring2.X集成redis所需common-pool2-->
<dependency>
 <groupId>org.apache.commons</groupId>
 <artifactId>commons-pool2</artifactId>
 <version>2.6.0</version>
</dependency>

創建配置類 固定寫法

package com.lzq.yygh.common;
import com.fasterxml.jackson.annotation.JsonAutoDetect;
import com.fasterxml.jackson.annotation.PropertyAccessor;
import com.fasterxml.jackson.databind.ObjectMapper;
import org.springframework.cache.CacheManager;
import org.springframework.cache.annotation.EnableCaching;
import org.springframework.context.annotation.Bean;
import org.springframework.context.annotation.Configuration;
import org.springframework.data.redis.cache.RedisCacheConfiguration;
import org.springframework.data.redis.cache.RedisCacheManager;
import org.springframework.data.redis.connection.RedisConnectionFactory;
import org.springframework.data.redis.core.RedisTemplate;
import org.springframework.data.redis.serializer.Jackson2JsonRedisSerializer;
import org.springframework.data.redis.serializer.RedisSerializationContext;
import org.springframework.data.redis.serializer.RedisSerializer;
import org.springframework.data.redis.serializer.StringRedisSerializer;
 
import java.net.UnknownHostException;
import java.time.Duration;
@Configuration
@EnableCaching  //開啟緩存功能
public class RedisConfig {
/**
 * 設置RedisTemplate規則
 * @param redisConnectionFactory
 * @return
 */
@Bean
public RedisTemplate<Object, Object> redisTemplate(RedisConnectionFactory redisConnectionFactory)throws UnknownHostException {
    RedisTemplate<Object, Object> redisTemplate = new RedisTemplate<>();
    redisTemplate.setConnectionFactory(redisConnectionFactory);
    Jackson2JsonRedisSerializer jackson2JsonRedisSerializer = new Jackson2JsonRedisSerializer(Object.class);
    //解決查詢緩存轉換異常的問題
    ObjectMapper om = new ObjectMapper();
    // 指定要序列化的域,field,get和set,以及修飾符范圍,ANY是都有包括private和public
     om.setVisibility(PropertyAccessor.ALL, JsonAutoDetect.Visibility.ANY);
    // 指定序列化輸入的類型,類必須是非final修飾的,final修飾的類,比如String,Integer等
                om.enableDefaultTyping(ObjectMapper.DefaultTyping.NON_FINAL);
     jackson2JsonRedisSerializer.setObjectMapper(om);
    //序列號key value
     redisTemplate.setKeySerializer(new StringRedisSerializer());
     redisTemplate.setValueSerializer(jackson2JsonRedisSerializer);
     redisTemplate.setHashKeySerializer(new StringRedisSerializer());
     redisTemplate.setHashValueSerializer(jackson2JsonRedisSerializer);
     redisTemplate.afterPropertiesSet();
     return redisTemplate;
}
    /**
     * 設置CacheManager緩存規則
     * @param factory
     * @return
     */
    @Bean
    public CacheManager cacheManager(RedisConnectionFactory factory) {
        RedisSerializer<String> redisSerializer = new StringRedisSerializer();
        Jackson2JsonRedisSerializer jackson2JsonRedisSerializer = new Jackson2JsonRedisSerializer(Object.class);
        //解決查詢緩存轉換異常的問題
        ObjectMapper om = new ObjectMapper();
        om.setVisibility(PropertyAccessor.ALL, JsonAutoDetect.Visibility.ANY);
        om.enableDefaultTyping(ObjectMapper.DefaultTyping.NON_FINAL);
        jackson2JsonRedisSerializer.setObjectMapper(om);
        // 配置序列化(解決亂碼的問題),過期時間600秒
        RedisCacheConfiguration config = RedisCacheConfiguration.defaultCacheConfig()
                .entryTtl(Duration.ofSeconds(600)) //緩存過期10分鐘 ---- 業務需求。
                .serializeKeysWith(RedisSerializationContext.SerializationPair.fromSerializer(redisSerializer))//設置key的序列化方式
                .serializeValuesWith(RedisSerializationContext.SerializationPair.fromSerializer(jackson2JsonRedisSerializer)) //設置value的序列化
                .disableCachingNullValues();
        RedisCacheManager cacheManager = RedisCacheManager.builder(factory)
                .cacheDefaults(config)
                .build();
        return cacheManager;
    }
}

添加配置信息

spring.redis.host=127.0.0.1
spring.redis.port=6379
spring.redis.database= 0
spring.redis.timeout=1800000
spring.redis.lettuce.pool.max-active=20
spring.redis.lettuce.pool.max-wait=-1
#最大阻塞等待時間(負數表示沒限制)
spring.redis.lettuce.pool.max-idle=5
spring.redis.lettuce.pool.min-idle=0

使用注解實現功能

緩存@Cacheable

根據方法對其返回結果進行緩存,下次請求時,如果緩存存在,則直接讀取緩存數據返 回;如果緩存不存在,則執行方法,并把返回的結果存入緩存中。一般用在查詢方法 上。

緩存@CachePut

使用該注解標志的方法,每次都會執行,并將結果存入指定的緩存中。其他方法可以直 接從響應的緩存中讀取緩存數據,而不需要再去查詢數據庫。一般用在新增方法上。

緩存@CacheEvict

使用該注解標志的方法,會清空指定的緩存。一般用在更新或者刪除方法上

在返回serviceimpl中標注注解  沒設置key時會自動加上參數作為key

@Cacheable(value = "dict", key = "'selectIndexList'+#id")

關于“如何使用注解實現Redis緩存功能”這篇文章的內容就介紹到這里,感謝各位的閱讀!相信大家對“如何使用注解實現Redis緩存功能”知識都有一定的了解,大家如果還想學習更多知識,歡迎關注億速云行業資訊頻道。

向AI問一下細節

免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。

AI

崇义县| 汤阴县| 张家川| 邓州市| 蒙自县| 石泉县| 砚山县| 扶绥县| 长丰县| 扎赉特旗| 昌江| 宜丰县| 南涧| 望江县| 江安县| 农安县| 通城县| 时尚| 康保县| 扶沟县| 楚雄市| 军事| 博客| 榆林市| 赞皇县| 塘沽区| 且末县| 和平区| 罗江县| 保靖县| 商洛市| 仁寿县| 南汇区| 留坝县| 苍梧县| 梅河口市| 五台县| 瓮安县| 长乐市| 巍山| 桦川县|