我们引入redis依赖是

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

在压测的收产生堆外内存溢出:OutOfDirectMemoryError的原因:
1)、Springboot2.0以后默认使用Lettuce作为操作redis的客户端。它使用netty进行网络通信。
2), Lettuce的bug导致netty堆外内存溢出 -Xmx300m; netty如果没有指定堆外内存,默认使用Xmx300m
可以通过-Dio.netty.maxDirectMemory进行设置
解决方案: 不能使用-Dio.netty.maxDirectMemory只是去调大堆外内存。
1)、可以升级Lettuce客户端。 2)可以切换使用jedis
这里我们采用的是切换到jedis,所以需要修改对应的将默认的lettuce排除调,添加jedis依赖。

<dependency>
   <groupId>org.springframework.boot</groupId>
   <artifactId>spring-boot-starter-data-redis</artifactId>
   <exclusions>
       <!-- Lettuce的bug导致netty堆外内存溢出 切换使用jedis-->
       <exclusion>
           <groupId>io.lettuce</groupId>
           <artifactId>lettuce-core</artifactId>
       </exclusion>
   </exclusions>
</dependency>
<!--       Lettuce的bug导致netty堆外内存溢出 切换使用jedis-->
<dependency>
   <groupId>redis.clients</groupId>
   <artifactId>jedis</artifactId>
</dependency>