您好,登錄后才能下訂單哦!
今天小編給大家分享一下SpringBoot如何配置Redis高并發緩存的相關知識點,內容詳細,邏輯清晰,相信大部分人都還太了解這方面的知識,所以分享這篇文章給大家參考一下,希望大家閱讀完這篇文章后有所收獲,下面我們一起來了解一下吧。
1.引入依賴
<dependency> <groupId>org.springframework.boot</groupId> <artifactId>spring-boot-starter-data-redis</artifactId> </dependency>
2.配置
#啟動redis #redis的數據庫索引(默認為0) spring.redis.database=2 #redis的服務器地址 spring.redis.host=127.0.0.1 #密碼(沒有就為空) spring.redis.password= #連接池的最大連接數 spring.redis.jedis.pool.max-active=2000 #連接池的最大阻塞等待時間(使用負值表示無限制) spring.redis.jedis.pool.max-wait=-1 #連接池的最小空閑連接 spring.redis.jedis.pool.min-idle=50 #連接超時時間(毫秒) spring.redis.timeout=1000 #集群模式配置 #spring.redis.cluster.nodes=106.54.79.43:7001,106.54.79.43:7002,106.54.79.43:7003,106.54.79.43:7004,106.54.79.43:7005,106.54.79.43:7006
3.自動裝配的對象
@AutowiredStringRedisTemplate stringRedisTemplate;//僅支持字符串的數據@AutowiredRedisTemplate redisTemplate;//支持對象的數據,但需要對對象進行序列化
4.序列化
什么是序列化?
序列化是將對象狀態轉換為可保持或傳輸的格式的過程。與序列化相對的是反序列化,它將流轉換為對象。這兩個過程結合起來,可以輕松地存儲和傳輸數據。
為什么要序列化對象
把對象轉換為字節序列的過程稱為對象的序列化把字節序列恢復為對象的過程稱為對象的反序列化
@Configuration@AutoConfigureAfter(RedisAutoConfiguration.class)public class RedisConfig {/**java項目www.1b23.com * 對屬性進行序列化和創建連接工廠 * @param connectionFactory * @return */@Beanpublic RedisTemplate<String, Serializable> redisTemplate(LettuceConnectionFactory connectionFactory) {RedisTemplate<String, Serializable> template = new RedisTemplate<>();template.setKeySerializer(new StringRedisSerializer());template.setValueSerializer(new GenericJackson2JsonRedisSerializer());template.setConnectionFactory(connectionFactory);return template;}}
5.測試
//java項目www.1b23.com@RequestMapping("/user")@RestControllerpublic class UserController {@AutowiredStringRedisTemplate stringRedisTemplate;//僅支持字符串的數據@AutowiredRedisTemplate redisTemplate;//支持對象的數據,前提需要進行序列化@GetMappingpublic User user(){User user = new User();user.setId("1");user.setName("zhangshan");user.setPhone("133333333");//插入數據 stringRedisTemplate.opsForValue().set("1",user.toString());redisTemplate.opsForValue().set("user",user);// return stringRedisTemplate.opsForValue().get("1"); return (User)redisTemplate.opsForValue().get("user");}}
以上就是“SpringBoot如何配置Redis高并發緩存”這篇文章的所有內容,感謝各位的閱讀!相信大家閱讀完這篇文章都有很大的收獲,小編每天都會為大家更新不同的知識,如果還想學習更多的知識,請關注億速云行業資訊頻道。
免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。