Redis RedisTemplate 的 execute()方法

Redis 批量操作

如果频繁地使用Redis,比如在 for循环中调用 redis,有时可能会报错: Could not get a resource from the pool。

这是因为 Redis的连接数是有限的,打开了Redis的连接,用完记得要关闭,如果连接数不够了就会报错。

Redis 批量操作,可以使用 RedisTemplate 的 execute()方法。

RedisTemplate 源码

  • org.springframework.data.redis.core.RedisOperations

  • org.springframework.data.redis.core.RedisTemplate

RedisTemplate 的 execute()方法

org.springframework.data.redis.core.RedisTemplate#execute(org.springframework.data.redis.core.SessionCallback)

execute() 方法,可以在一次连接中进行多个命令操作。执行完会自动关闭连接。

	/*** Executes a Redis session. Allows multiple operations to be executed in the same session enabling 'transactional'* capabilities through {@link #multi()} and {@link #watch(Collection)} operations.** @param <T> return type* @param session session callback. Must not be {@literal null}.* @return result object returned by the action or <tt>null</tt>*/@Overridepublic <T> T execute(SessionCallback<T> session) {Assert.isTrue(initialized, "template not initialized; call afterPropertiesSet() before using it");Assert.notNull(session, "Callback object must not be null");RedisConnectionFactory factory = getRequiredConnectionFactory();// 打开连接RedisConnectionUtils.bindConnection(factory, enableTransactionSupport);try {return session.execute(this);} finally {//执行完会自动关闭连接RedisConnectionUtils.unbindConnection(factory);}}

execute()的SessionCallback参数和RedisCallback参数

SessionCallback 比 RedisCallck 更好些,优先使用 SessionCallback 。

使用SessionCallback , 还可以配合multi() 和 watch() 进行事务操作。

/*** Executes the given action within a Redis connection. Application exceptions thrown by the action object get* propagated to the caller (can only be unchecked) whenever possible. Redis exceptions are transformed into* appropriate DAO ones. Allows for returning a result object, that is a domain object or a collection of domain* objects. Performs automatic serialization/deserialization for the given objects to and from binary data suitable* for the Redis storage. Note: Callback code is not supposed to handle transactions itself! Use an appropriate* transaction manager. Generally, callback code must not touch any Connection lifecycle methods, like close, to let* the template do its work.** @param <T> return type* @param action callback object that specifies the Redis action. Must not be {@literal null}.* @return a result object returned by the action or <tt>null</tt>*/
@Nullable
<T> T execute(RedisCallback<T> action);/*** Executes a Redis session. Allows multiple operations to be executed in the same session enabling 'transactional'* capabilities through {@link #multi()} and {@link #watch(Collection)} operations.** @param <T> return type* @param session session callback. Must not be {@literal null}.* @return result object returned by the action or <tt>null</tt>*/
@Nullable
<T> T execute(SessionCallback<T> session);

execute() 使用示例:

    @Autowiredprivate StringRedisTemplate stringRedisTemplate;public void testExecute() {String userId = "userId";stringRedisTemplate.opsForValue().set(userId+"123", "lin");stringRedisTemplate.opsForValue().set(userId+"456", "wu");stringRedisTemplate.opsForValue().set(userId+"789", "chen");Map<String, String> map = new HashMap<>();stringRedisTemplate.execute(new SessionCallback<String>() {@Overridepublic <K, V> String execute(@NonNull RedisOperations<K, V> redisOperations) throws DataAccessException {List<String> list = Arrays.asList("123", "456", "789");for (String id : list) {String key = userId + id;String value = (String) redisOperations.opsForValue().get(key);map.put(key, value);}return null;}});map.forEach((k, v) -> System.out.println(k + ",val:" + v));}

本文来自互联网用户投稿,该文观点仅代表作者本人,不代表本站立场。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如若转载,请注明出处:http://www.mzph.cn/news/141240.shtml

如若内容造成侵权/违法违规/事实不符,请联系多彩编程网进行投诉反馈email:809451989@qq.com,一经查实,立即删除!

相关文章

calico

calico:默认是ip-ip模式&#xff0c; ipip 开销小 vxlan模式&#xff1a;后期版本才支持 不会创建虚拟交换机 Calico 是一种用于构建和管理容器网络的开源软件定义网络&#xff08;SDN&#xff09;解决方案。它专门设计用于在容器和虚拟机之间提供高性能、高可扩展性和灵活的…

Leetcode154. Find Minimum in Rotated Sorted Array II

旋转数组找最小&#xff0c;这次值可以重复 不妨假设你已经做了上一题&#xff0c;题解 上一题的方法1肯定是用不了了&#xff0c;因为不再能完全分成2个不同的部分 所以我们沿着方法2走 如果 > n u m s [ r ] >nums[r] >nums[r]&#xff0c;我们依然可以找右半边 …

Clickhouse学习笔记(10)—— 查询优化

单表查询 Prewhere 替代 where prewhere与where相比&#xff0c;在过滤数据的时候会首先读取指定的列数据&#xff0c;来判断数据过滤&#xff0c;等待数据过滤之后再读取 select 声明的列字段来补全其余属性 简单来说就是先过滤再查询&#xff0c;而where过滤是先查询出对应…

Docker快速安装kafka

创建zk docker run -d --name zookeeper-server \-e ALLOW_ANONYMOUS_LOGINyes \bitnami/zookeeper:latest创建kafka docker run -d --name kafka-server \-p 9092:9092 \-e ALLOW_PLAINTEXT_LISTENERyes \-e KAFKA_CFG_ZOOKEEPER_CONNECTzookeeper-server:2181 \-e KAFKA_CF…

Java面试题03

1.Java容器都有哪些 Java提供了丰富的容器类&#xff0c;包括Collection接口的实现类&#xff08;如List、Set等&#xff09;和Map接口的实现类&#xff08;如HashMap、TreeMap等&#xff09;&#xff0c;它们分别用于存储不同类型的元素和键值对。 Java容器主要分为两种类型&a…

matlab 小波自适应阈值去噪

1、内容简介 略 12-可以交流、咨询、答疑 小波自适应阈值去噪 2、内容说明 小波自适应阈值一维信号去噪&#xff0c;也包含软阈值和硬阈值 硬阈值、软阈值、自适应阈值 3、仿真分析 略 4、参考论文 略 链接&#xff1a;https://pan.baidu.com/s/1yQ1yDfk-_Qnq7tGpa23L…

JOSEF约瑟 反时限过流继电器JGL-115板前接线5A速断保护

系列型号 JGL-111反时限过流继电器&#xff1b;JGL-112反时限过流继电器&#xff1b; JGL-113反时限过流继电器&#xff1b;JGL-114反时限过流继电器&#xff1b; JGL-115反时限过流继电器&#xff1b;JGL-116反时限过流继电器&#xff1b; JGL-117反时限过流继电器&#xff1b…

Leetcode—69.x的平方根【简单】

2023每日刷题&#xff08;二十七&#xff09; Leetcode—69.x的平方根 直接法实现代码 int mySqrt(int x) {long long i 0;while(i * i < x) {i;}if(i * i > x) {return i - 1;}return i; }运行结果 二分法实现代码 int mySqrt(int x) {long long left 0, right (l…

Apache DolphinScheduler如何完全设置东八区?

默认情况 为了兼容全世界不同时区&#xff0c;Apache DolphinScheduler 使用的是 UTC 0 时区&#xff0c;包括保存到数据库表中的数据时区&#xff0c;以及展示到页面上的时区。 如果我们想在页面上看到东八区时间&#xff0c;则需要在页面上手动选择上海时区&#xff0c;如下…

[Hive] INSERT OVERWRITE DIRECTORY要注意的问题

在使用Hive的INSERT OVERWRITE语句时&#xff0c;需要注意以下问题&#xff1a; 数据覆盖&#xff1a;INSERT OVERWRITE语句会覆盖目标目录中的数据。因此&#xff0c;在执行该语句之前&#xff0c;请确保目标目录为空或者你希望覆盖的数据已经不再需要。数据格式&#xff1a;…

Android Glide transform圆形图CircleCrop动态代码描边绘制外框线并rotateImage旋转,Kotlin

Android Glide transform圆形图CircleCrop动态代码描边绘制外框线并rotateImage旋转&#xff0c;Kotlin <?xml version"1.0" encoding"utf-8"?> <FrameLayout xmlns:android"http://schemas.android.com/apk/res/android"xmlns:app&q…

JVM及其垃圾回收机制(GC)

目录 一.JVM内存区域划分 二.JVM类加载机制 类加载过程 类加载的时机 双亲委派模型 三.JVM垃圾回收机制&#xff08;GC) GC工作过程 1.找到垃圾/判断垃圾 &#xff08;1&#xff09;引用计数【python/PHP】 &#xff08;2&#xff09;可达性分析【Java】 2.对象释放…

Juniper PPPOE双线路冗余RPM配置

------------------ 浮动静态路由 set routing-options static route 0.0.0.0/0 next-hop pp0.0 qualified-next-hop pp0.1 preference 10 ----------------- RPM测试的内容,包括从哪个接口发起测试,测试ping等等 #指定探针类型用ICMP请求 #探测的目标地址 #探测间隔 #探测阈…

ElasticSearch中常见的分词器介绍

文章目录 ElasticSearch中常见的分词器介绍前言分词器的作用如何指定分词器分词器的组成分词器的类型标准分词器空格分词器简单分词器关键词分词器停用词分词器IK分词器NGram分词器正则匹配分词器语言分词器自定义分词器 ElasticSearch中常见的分词器介绍 前言 ElasticSearch是…

如何利用黑群晖虚拟机和内网穿透实现公网远程访问

文章目录 前言本教程解决的问题是&#xff1a;按照本教程方法操作后&#xff0c;达到的效果是前排提醒&#xff1a; 1. 搭建群晖虚拟机1.1 下载黑群晖文件vmvare虚拟机安装包1.2 安装VMware虚拟机&#xff1a;1.3 解压黑群晖虚拟机文件1.4 虚拟机初始化1.5 没有搜索到黑群晖的解…

Linux系统上搭建高可用Kafka集群(使用自带的zookeeper)

本次在CentOS7.6上搭建Kafka集群 Apache Kafka 是一个高吞吐量的分布式消息系统&#xff0c;被广泛应用于大规模数据处理和实时数据管道中。本文将介绍在CentOS操作系统上搭建Kafka集群的过程&#xff0c;以便于构建可靠的消息处理平台。 文件分享&#xff08;KafkaUI、kafka…

No193.精选前端面试题,享受每天的挑战和学习

🤍 前端开发工程师(主业)、技术博主(副业)、已过CET6 🍨 阿珊和她的猫_CSDN个人主页 🕠 牛客高级专题作者、在牛客打造高质量专栏《前端面试必备》 🍚 蓝桥云课签约作者、已在蓝桥云课上架的前后端实战课程《Vue.js 和 Egg.js 开发企业级健康管理项目》、《带你从入…

kali linux安装教程

安装 Kali Linux 非常简单&#xff0c;下面是基本的步骤&#xff1a; 首先下载 Kali Linux 的 ISO 镜像文件。你可以从官方网站 https://www.kali.org/downloads/ 下载。 确保你的计算机支持使用盘或者 USB 启动。你可以在计算机开机时按下 F12 或者其他类似的按键&#xff0c;…

Java 中表示整数的包装类Integer(详解)

Integer 是 Java 中的一个类&#xff0c;属于 java.lang 包。 基本概念 在Java中&#xff0c;Integer是一个类&#xff0c;它封装了一个int类型的值&#xff0c;使得int类型的值可以被当做对象来处理。Integer类提供了许多方法来操作整数值&#xff0c;包括将字符串转换为整数…

C#中Linq AsEnumeralbe、DefaultEmpty和Empty的使用

Linq是Language Integrated Query的简称&#xff0c;它是微软在.NET Framework 3.5里面新加入的特性&#xff0c;用以简化查询查询操作。以下主要介绍C#中Linq的AsEnumeralbe、DefaultEmpty和Empty操作符。 1、AsEnumeralbe操作符 AsEnumerable操作符可以将一个类型为IEnumer…