当前位置:网站首页>redisTemplate存取List遇到的坑
redisTemplate存取List遇到的坑
2022-08-04 12:35:00 【susu1083018911】
一直以为,存集合元素,会用到:
底层:
@Nullable
Long rightPushAll(K paramK, Collection<V> paramCollection);
我们使用方式:
redisTemplate.opsForList().rightPushAll(key, ids);
使用这种方式,结果redis中,会把真个list作为一行数据存进去,不是我们想要的!
改成如下方式:
redisTemplate.opsForList().rightPushAll(key, list.toArray());
底层调用:
@Nullable
Long rightPushAll(K paramK, V... paramVarArgs);
记得存的时候list.toArray一下,这样存入redis中是一个对象一行数据!
边栏推荐
- 什么是 DevOps?看这一篇就够了!
- MATLAB——图像分块
- sqlserver删除重复数据
- 新SCADA 系统:集成边缘计算、MQTT 和云平台
- 划重点!2022面试必刷461道大厂架构面试真题汇总+面经+简历模板
- Hit the interview!The latest interview booklet of Ali Jin, nine silver and ten is stable!
- 高速电路PCB布局布线参考
- 中电资讯 - 一路“标”升,喜迎Q3开门红
- String is a reference type
- Programmer Qixi Gift - How to quickly build an exclusive chat room for your girlfriend in 30 minutes
猜你喜欢
电源测试之输出动态响应(Output Dynamic Response Test)
rpm安装提示error: XXX: not an rpm package (or package manifest):
【UML】信息系统分析与设计知识点总结
全面认识MOS管,一篇文章就够了
num_workers
技术分享| 小程序实现音视频通话
How to develop small program plug-ins to achieve profitability?
MySQL必知必会(初级篇)
酷开科技 × StarRocks:统一 OLAP 分析引擎,全面打造数字化的 OTT 模式
A comprehensive understanding of MOS tubes, an article is enough
随机推荐
Do you understand the various configurations in the project?
为什么密码云服务平台是云时代的必然之选?
FHQ-Treap 简介
移动跨端技术方案分析对比
ShanDong Multi-University Training #4 A、B、C、G
Focusing on data sources, data quality and model performance to build a credit profile of small and micro enterprises
情人节浪漫3D照片墙【附源码】
使用COLMAP初步三维重建
广告电商系统开发
中电资讯 - 一路“标”升,喜迎Q3开门红
手搓一个“七夕限定”,用3D Engine 5分钟实现烟花绽放效果
【PHP实现微信公众平台开发—基础篇】第1章 课程介绍
TensorFlow学习记录(三):高阶操作 & 神经网络与全连接层
Diffusion Models:生成扩散模型
抽奖/秒杀/竞价/评分/权威/投票,技术教你用合适的方法做好活动
面试官:连 INSERT INTO SET 都不知道怎么用,你这3年都干些什么了?
Linux-Docker-Mysql安装
"Lonely Walking on the Moon" is a powerful medicine, it can't cure the internal friction of happy twist
MATLAB——图像分块
划重点!2022面试必刷461道大厂架构面试真题汇总+面经+简历模板