登录
Redispipeline
已收录文章:1篇
三天内
三天内
一周内
一月内
三月内
最新
最热
数据库
·
Redis
| 1年前 |
批量插入
·
Redispipeline
·
redis
在Redis集群中使用pipeline批量插入的实现方法
由于项目中需要使用批量插入功能, 所以在网上查找到了Redis 批量插入可以使用pipeline来高效的插入, 示例代码如下: String key = "key"; Jedis jedis = new Jedis("xx.xx.xx.xx"); Pipeline p = jedis.pipelined(); List<S
269
收藏