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

溫馨提示×

溫馨提示×

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

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

SpringBoot中怎么整合Lettuce redis

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

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

信宜市| 望江县| 阜南县| 贵溪市| 垫江县| 五河县| 朝阳区| 新津县| 和林格尔县| 乐平市| 亚东县| 哈尔滨市| 澳门| 井陉县| 安福县| 天柱县| 浦江县| 万载县| 诸城市| 凤山市| 潜山县| 合肥市| 乌审旗| 张家口市| 仁化县| 临颍县| 西峡县| 沅陵县| 乐山市| 兴业县| 锦屏县| 巨野县| 宣化县| 河西区| 崇州市| 巴林右旗| 漳平市| 永和县| 新竹县| 宁阳县| 兴和县|