91超碰碰碰碰久久久久久综合_超碰av人澡人澡人澡人澡人掠_国产黄大片在线观看画质优化_txt小说免费全本

溫馨提示×

溫馨提示×

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

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

SpringBoot中如何整合Lettuce redis

發布時間:2022-04-06 15:44:42 來源:億速云 閱讀:169 作者:iii 欄目:移動開發

這篇文章主要介紹“SpringBoot中如何整合Lettuce redis”的相關知識,小編通過實際案例向大家展示操作過程,操作方法簡單快捷,實用性強,希望這篇“SpringBoot中如何整合Lettuce redis”文章能幫助大家解決問題。

1、添加依賴

<dependency>
      <groupId>org.springframework.boot</groupId>
      <artifactId>spring-boot-starter-data-redis</artifactId>
    </dependency>
    <dependency>
      <groupId>org.apache.commons</groupId>
      <artifactId>commons-pool2</artifactId>
    </dependency>

2、添加redis配置

spring:
 redis:
   host: ****
   password:****
   port: 6379
 # 連接超時時間(毫秒)
   timeout: 1000
 # Redis默認情況下有16個分片,這里配置具體使用的分片,默認是0
   database: 0
 # 連接池配置
   lettuce:
    pool:
 # 連接池最大連接數(使用負值表示沒有限制) 默認 8
     max-active: 8
 # 連接池最大阻塞等待時間(使用負值表示沒有限制) 默認 -1
     max-wait: -1
 # 連接池中的最大空閑連接 默認 8
     max-idle: 8
 # 連接池中的最小空閑連接 默認 0
     min-idle: 0

3、實現邏輯

@Autowired
  private StringRedisTemplate stringRedisTemplate;
  @Override
  public String testRedis(){
    ExecutorService executorService = Executors.newFixedThreadPool(1000);
    IntStream.range(0, 1000).forEach(i -> executorService.execute(() -> stringRedisTemplate.opsForValue().increment("lcl",1)));
    System.out.println("lcl1=============" + stringRedisTemplate.opsForValue().get("lcl"));
    stringRedisTemplate.opsForValue().set("lcl1","val1");
    String val1 = stringRedisTemplate.opsForValue().get("lcl1");
    System.out.println("lcl1=============" + val1);
    String key = "redis:test:demo1";
    User user = new User();
    user.setId(100L);
    user.setUsername("u2");
    user.setPassword("p2");
    stringRedisTemplate.opsForValue().set(key, JSON.toJSONString(user));
    String valUser = stringRedisTemplate.opsForValue().get(key);
    System.out.println("redis:test:demo1=============" + valUser);
    User getUser = JSON.parseObject(valUser, User.class);
    System.out.println("redis:test:demo1=============" + getUser.getUsername()+ "========" + getUser.getPassword());
    return null;
  }

測試結果:

SpringBoot中如何整合Lettuce redis

SpringBoot中如何整合Lettuce redis

由于redis有String、list、set、zset、hash、geo等類型,因此使用時不止使用opsForValue()方法,具體的對應方法如下:

  • opsForValue: 對應 String(字符串)

  • opsForZSet: 對應 ZSet(有序集合)

  • opsForHash: 對應 Hash(哈希)

  • opsForList: 對應 List(列表)

  • opsForSet: 對應 Set(集合)

  • opsForGeo: 對應 GEO(地理位置)

關于“SpringBoot中如何整合Lettuce redis”的內容就介紹到這里了,感謝大家的閱讀。如果想了解更多行業相關的知識,可以關注億速云行業資訊頻道,小編每天都會為大家更新不同的知識點。

向AI問一下細節

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

AI

宣化县| 阿图什市| 东乡县| 浏阳市| 崇明县| 华亭县| 许昌县| 广昌县| 长宁区| 壤塘县| 金塔县| 潼关县| 周至县| 理塘县| 宁国市| 启东市| 武清区| 黑水县| 米林县| 理塘县| 淮安市| 区。| 弥渡县| 连江县| 成安县| 清新县| 宁海县| 甘孜县| 普洱| 修武县| 略阳县| 盐城市| 乐陵市| 蒙山县| 易门县| 灌阳县| 孝感市| 米易县| 西贡区| 兴城市| 凌源市|