SpringBoot项目中Redis之管道技术

环境:springboot2.3.9.RELEASE + redis3.2.100

Redis是一种基于客户端-服务端模型以及请求/响应协议的TCP服务。这意味着通常情况下一个请求会遵循以下步骤:

  • 客户端向服务端发送一个查询请求,并监听Socket返回,通常是以阻塞模式,等待服务端响应。
  • 服务端处理命令,并将结果返回给客户端。

Redis 管道技术

Redis 管道技术可以在服务端未响应时,客户端可以继续向服务端发送请求,并最终一次性读取所有服务端的响应。

Redis普通请求模型与管道请求模型对比

(普通请求模型)来源网络

RTT(Round-Trip Time),就是往返时延,在计算机网络中它是一个重要的性能指标,表示从发送端发送数据开始,到发送端收到来自接收端的确认(接收端收到数据后便立即发送确认),总共经历的时延。

一般认为,单向时延 = 传输时延t1 + 传播时延t2 + 排队时延t3

(管道请求模型)来源网络

性能对比

依赖

 
 
 
 
  1.             org.springframework.boot
  2.             spring-boot-starter-data-redis
  3.         
  4.         
  5.             org.apache.commons
  6.             commons-pool2

配置文件

 
 
 
 
  1. spring:
  2.   redis:
  3.     host: localhost
  4.     port: 6379
  5.     password: ******
  6.     database: 4
  7.     lettuce:
  8.       pool:
  9.         maxActive: 8
  10.         maxIdle: 100
  11.         minIdle: 10
  12.         maxWait: -1

普通方法

 
 
 
 
  1. @Resource
  2. private StringRedisTemplate stringRedisTemplate ;
  3. public void execNormal() {
  4.         long start = System.currentTimeMillis() ;
  5.         for (int i = 0; i < 100_000; i++) {
  6.             stringRedisTemplate.opsForValue().set("k" + i, "v" + i) ;
  7.         }
  8.         System.out.println("耗时:" + (System.currentTimeMillis() - start) + " ms") ;
  9. }

测试结果

总耗时:47秒左右

管道技术

 
 
 
 
  1. public void execPipeline() {
  2.         long start = System.currentTimeMillis() ;
  3.         stringRedisTemplate.executePipelined(new RedisCallback() {
  4.             @Override
  5.             public Object doInRedis(RedisConnection connection) throws DataAccessException {
  6.                 for (int i = 0; i < 100_000; i++) {
  7.                     connection.set(("pk" + i).getBytes(), ("pv" + i).getBytes()) ;
  8.                 }
  9.                 return null ;
  10.             }
  11.         }) ;
  12.         System.out.println("耗时:" + (System.currentTimeMillis() - start) + " ms") ;
  13. }
  14. 测试结果

    耗时:13秒左右

    性能提升了3倍多。

    完毕!!!

    网站名称:SpringBoot项目中Redis之管道技术
    标题URL:http://www.shufengxianlan.com/qtweb/news24/460224.html

    网站建设、网络推广公司-创新互联,是专注品牌与效果的网站制作,网络营销seo公司;服务项目有等

    广告

    声明:本网站发布的内容(图片、视频和文字)以用户投稿、用户转载内容为主,如果涉及侵权请尽快告知,我们将会在第一时间删除。文章观点不代表本网站立场,如需处理请联系客服。电话:028-86922220;邮箱:631063699@qq.com。内容未经允许不得转载,或转载时需注明来源: 创新互联