溫馨提示×

溫馨提示×

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

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

SpringBoot中怎么整合Lettuce redis

發(fā)布時間:2021-06-17 14:06:45 來源:億速云 閱讀:163 作者:Leah 欄目:編程語言

SpringBoot中怎么整合Lettuce redis,相信很多沒有經(jīng)驗的人對此束手無策,為此本文總結(jié)了問題出現(xiàn)的原因和解決方法,通過這篇文章希望你能解決這個問題。

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:
 # 連接池最大連接數(shù)(使用負值表示沒有限制) 默認 8
     max-active: 8
 # 連接池最大阻塞等待時間(使用負值表示沒有限制) 默認 -1
     max-wait: -1
 # 連接池中的最大空閑連接 默認 8
     max-idle: 8
 # 連接池中的最小空閑連接 默認 0
     min-idle: 0

3、實現(xiàn)邏輯

@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;
  }

測試結(jié)果:

SpringBoot中怎么整合Lettuce redis

SpringBoot中怎么整合Lettuce redis

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

  • opsForValue: 對應(yīng) String(字符串)

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

  • opsForHash: 對應(yīng) Hash(哈希)

  • opsForList: 對應(yīng) List(列表)

  • opsForSet: 對應(yīng) Set(集合)

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

看完上述內(nèi)容,你們掌握SpringBoot中怎么整合Lettuce redis的方法了嗎?如果還想學(xué)到更多技能或想了解更多相關(guān)內(nèi)容,歡迎關(guān)注億速云行業(yè)資訊頻道,感謝各位的閱讀!

向AI問一下細節(jié)

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

AI