1、leftPush(K key, V value)

在变量左边添加元素值。

Java代码  

  1. redisTemplate.opsForList().leftPush("list","a");
  2. redisTemplate.opsForList().leftPush("list","b");
  3. redisTemplate.opsForList().leftPush("list","c");

2、index(K key, long index)

获取集合指定位置的值。

Java代码  

  1. String listValue = redisTemplate.opsForList().index("list",1) + "";
  2. System.out.println("通过index(K key, long index)方法获取指定位置的值:" + listValue);

3、range(K key, long start, long end)

获取指定区间的值。

Java代码  

  1. List<Object> list =  redisTemplate.opsForList().range("list",0,-1);
  2. System.out.println("通过range(K key, long start, long end)方法获取指定范围的集合值:"+list);

4、leftPush(K key, V pivot, V value)

把最后一个参数值放到指定集合的第一个出现中间参数的前面,如果中间参数值存在的话。

Java代码  

  1. redisTemplate.opsForList().leftPush("list","a","n");
  2. list =  redisTemplate.opsForList().range("list",0,-1);
  3. System.out.println("通过leftPush(K key, V pivot, V value)方法把值放到指定参数值前面:" + list);

5、leftPushAll(K key, V... values)

向左边批量添加参数元素。

Java代码  

  1. redisTemplate.opsForList().leftPushAll("list","w","x","y");
  2. list =  redisTemplate.opsForList().range("list",0,-1);
  3. System.out.println("通过leftPushAll(K key, V... values)方法批量添加元素:" + list);

6、leftPushAll(K key, Collection<V> values)

以集合的方式向左边批量添加元素。

Java代码  

  1. List newList = new ArrayList();
  2. newList.add("o");
  3. newList.add("p");
  4. newList.add("q");
  5. redisTemplate.opsForList().leftPushAll("list",newList);
  6. list =  redisTemplate.opsForList().range("list",0,-1);
  7. System.out.println("通过leftPushAll(K key, Collection<V> values)方法以集合的方式批量添加元素:" + list);

7、leftPushIfPresent(K key, V value)

如果存在集合则添加元素。

Java代码  

  1. redisTemplate.opsForList().leftPushIfPresent("presentList","o");
  2. list =  redisTemplate.opsForList().range("presentList",0,-1);
  3. System.out.println("通过leftPushIfPresent(K key, V value)方法向已存在的集合添加元素:" + list);

8、rightPush(K key, V value)

向集合最右边添加元素。

Java代码  

  1. redisTemplate.opsForList().rightPush("list","w");
  2. list =  redisTemplate.opsForList().range("list",0,-1);
  3. System.out.println("通过rightPush(K key, V value)方法向最右边添加元素:" + list);

9、rightPush(K key, V pivot, V value)

向集合中第一次出现第二个参数变量元素的右边添加第三个参数变量的元素值。

Java代码  

  1. redisTemplate.opsForList().rightPush("list","w","r");
  2. list =  redisTemplate.opsForList().range("list",0,-1);
  3. System.out.println("通过rightPush(K key, V pivot, V value)方法向最右边添加元素:" + list);

10、rightPushAll(K key, V... values)

向右边批量添加元素。

Java代码  

  1. redisTemplate.opsForList().rightPushAll("list","j","k");
  2. list =  redisTemplate.opsForList().range("list",0,-1);
  3. System.out.println("通过rightPushAll(K key, V... values)方法向最右边批量添加元素:" + list);

11、rightPushAll(K key, Collection<V> values)

以集合方式向右边添加元素。

Java代码  

  1. newList.clear();
  2. newList.add("g");
  3. newList.add("h");
  4. redisTemplate.opsForList().rightPushAll("list",newList);
  5. list =  redisTemplate.opsForList().range("list",0,-1);
  6. System.out.println("通过rightPushAll(K key, Collection<V> values)方法向最右边以集合方式批量添加元素:" + list);

12、rightPushIfPresent(K key, V value)

向已存在的集合中添加元素。

Java代码  

  1. redisTemplate.opsForList().rightPushIfPresent("presentList","d");
  2. list =  redisTemplate.opsForList().range("presentList",0,-1);
  3. System.out.println("通过rightPushIfPresent(K key, V value)方法已存在的集合向最右边添加元素:" + list);

13、size(K key)

获取集合长度。

Java代码  

  1. long listLength = redisTemplate.opsForList().size("list");
  2. System.out.println("通过size(K key)方法获取集合list的长度为:" + listLength);

14、leftPop(K key)

移除集合中的左边第一个元素。

Java代码  

  1. Object popValue = redisTemplate.opsForList().leftPop("list");
  2. System.out.print("通过leftPop(K key)方法移除的元素是:" + popValue);
  3. list =  redisTemplate.opsForList().range("list",0,-1);
  4. System.out.println(",剩余的元素是:" + list);

15、leftPop(K key, long timeout, TimeUnit unit)

移除集合中左边的元素在等待的时间里,如果超过等待的时间仍没有元素则退出。

Java代码  

  1. popValue = redisTemplate.opsForList().leftPop("presentList",1, TimeUnit.SECONDS);
  2. System.out.print("通过leftPop(K key, long timeout, TimeUnit unit)方法移除的元素是:" + popValue);
  3. list =  redisTemplate.opsForList().range("presentList",0,-1);
  4. System.out.println(",剩余的元素是:" + list);

16、rightPop(K key)

移除集合中右边的元素。

Java代码  

  1. popValue = redisTemplate.opsForList().rightPop("list");
  2. System.out.print("通过rightPop(K key)方法移除的元素是:" + popValue);
  3. list =  redisTemplate.opsForList().range("list",0,-1);
  4. System.out.println(",剩余的元素是:" + list);

17、rightPop(K key, long timeout, TimeUnit unit)

移除集合中右边的元素在等待的时间里,如果超过等待的时间仍没有元素则退出。

Java代码  

  1. popValue = redisTemplate.opsForList().rightPop("presentList",1, TimeUnit.SECONDS);
  2. System.out.print("通过rightPop(K key, long timeout, TimeUnit unit)方法移除的元素是:" + popValue);
  3. list =  redisTemplate.opsForList().range("presentList",0,-1);
  4. System.out.println(",剩余的元素是:" + list);

18、rightPopAndLeftPush(K sourceKey, K destinationKey)

移除集合中右边的元素,同时在左边加入一个元素。

Java代码  

  1. popValue = redisTemplate.opsForList().rightPopAndLeftPush("list","12");
  2. System.out.print("通过rightPopAndLeftPush(K sourceKey, K destinationKey)方法移除的元素是:" + popValue);
  3. list =  redisTemplate.opsForList().range("list",0,-1);
  4. System.out.println(",剩余的元素是:" + list);

19、rightPopAndLeftPush(K sourceKey, K destinationKey, long timeout, TimeUnit unit)

移除集合中右边的元素在等待的时间里,同时在左边添加元素,如果超过等待的时间仍没有元素则退出。

Java代码  

  1. popValue = redisTemplate.opsForList().rightPopAndLeftPush("presentList","13",1,TimeUnit.SECONDS);
  2. System.out.println("通过rightPopAndLeftPush(K sourceKey, K destinationKey, long timeout, TimeUnit unit)方法移除的元素是:" + popValue);
  3. list =  redisTemplate.opsForList().range("presentList",0,-1);
  4. System.out.print(",剩余的元素是:" + list);

20、set(K key, long index, V value)

在集合的指定位置插入元素,如果指定位置已有元素,则覆盖,没有则新增,超过集合下标+n则会报错。

Java代码  

  1. redisTemplate.opsForList().set("presentList",3,"15");
  2. list =  redisTemplate.opsForList().range("presentList",0,-1);
  3. System.out.print("通过set(K key, long index, V value)方法在指定位置添加元素后:" + list);

21、remove(K key, long count, Object value)

从存储在键中的列表中删除等于值的元素的第一个计数事件。count> 0:删除等于从左到右移动的值的第一个元素;count< 0:删除等于从右到左移动的值的第一个元素;count = 0:删除等于value的所有元素。

Java代码  

  1. long removeCount = redisTemplate.opsForList().remove("list",0,"w");
  2. list =  redisTemplate.opsForList().range("list",0,-1);
  3. System.out.println("通过remove(K key, long count, Object value)方法移除元素数量:" + removeCount);
  4. System.out.println(",剩余的元素:" + list);

22、trim(K key, long start, long end)

截取集合元素长度,保留长度内的数据。

Java代码  

  1. redisTemplate.opsForList().trim("list",0,5);
  2. list =  redisTemplate.opsForList().range("list",0,-1);
  3. System.out.println("通过trim(K key, long start, long end)方法截取后剩余元素:" + list);

RedisTemplate集合使用说明-opsForList(二)的更多相关文章

  1. 2019/3/4 java集合学习(二)

    java集合学习(二) 在学完ArrayList 和 LinkedList之后,基本已经掌握了最基本的java常用数据结构,但是为了提高程序的效率,还有很多种特点各异的数据结构等着我们去运用,类如可以 ...

  2. 跟着刚哥梳理java知识点——集合(十二)

    Java集合分为Collection和Map两种体系 一.Collection接口: Collections接口为我们提供了以下方法: size():返回集合中元素的个数 add(Object obj ...

  3. Java 集合系列之二:List基本操作

    1. Java List 1. Java List重要观点 Java List接口是Java Collections Framework的成员. List允许您添加重复元素. List允许您拥有'nu ...

  4. 6.1 集合和映射--集合Set->底层基于二叉搜索树实现

    前言:在第5章的系列学习中,已经实现了关于二叉搜索树的相关操作,详情查看第5章即可.在本节中着重学习使用底层是我们已经封装好的二叉搜索树相关操作来实现一个基本的集合(set)这种数据结构.集合set的 ...

  5. Collection集合学习(二)———List接口与具体实现

    二.List接口: 一个可以包含重复元素的Collection,List中的元素不会自动排序,元素顺序由添加时的顺序决定. 具体实现类包括Vector(线程安全的),ArrayList,LinkedL ...

  6. java集合框架(二):HashTable

    HashTable作为集合框架中的一员,现在是很少使用了,一般都是在面试中会问到其与HashMap的区别.为了能在求职的时候用上场,我们有必要对其原理进行解读. HashTable的实现原理跟Hash ...

  7. JAVA集合类型(二)

    JAVA集合类型 (现代的变量集群) watermark/2/text/aHR0cDovL2Jsb2cuY3Nkbi5uZXQv/font/5a6L5L2T/fontsize/400/fill/I0J ...

  8. Java提高篇(三六)-----Java集合细节(二):asList的缺陷

    在实际开发过程中我们经常使用asList讲数组转换为List,这个方法使用起来非常方便,但是asList方法存在几个缺陷: 一.避免使用基本数据类型数组转换为列表 使用8个基本类型数组转换为列表时会存 ...

  9. swift 集合类型(二)

    说到swift的集合类型,就不得不谈到Dictionary.包含一个键值对组合的集合. var air = ["name":"warner","tit ...

随机推荐

  1. windows10升级更新1709版本 在桌面和文件夹中点击右键刷新,会引起卡顿反应慢

    win10,升级更新,1709,右键,卡机,刷新,反应慢,桌面,文件夹 windows自动升级到1709版本后出现的问题,而之前是没有这种问题的. 最终解决办法:(需要设置注册表) 运行:快捷键Win ...

  2. Ubuntu分区挂载

    创建主分区: 25G    主分区    空间起始位置    Ext4日志文件系统    / (ps:安装主要放这了,原因不明) 创建swap分区: 8192MB    逻辑分区        空间起 ...

  3. Spring 注入所得

    Spring在注入的时候 @Autowired @Qualifier(value = "inpatientInfoInInterService") private Inpatien ...

  4. kubernetes管理存储

    一.Kubernetes 如何管理存储资源: 理解volume 首先我们学习 Volume,以及 Kubernetes 如何通过 Volume 为集群中的容器提供存储:然后我们会实践几种常用的 Vol ...

  5. 牛客练习赛44 A 小y的序列 (模拟,细节)

    链接:https://ac.nowcoder.com/acm/contest/634/A 来源:牛客网 小y的序列 时间限制:C/C++ 1秒,其他语言2秒 空间限制:C/C++ 32768K,其他语 ...

  6. zencart搜索结果页面静态化 advanced_search_result

    首先,确认网站是否安装了ultimate_seo_urls 伪静态模块. 修改include/classes/seo.url.php 大约126行添加代码 'keyword' => 'sale' ...

  7. zencart网站上线前,邮件模板默认网址修改

    涉及到的文件 includes\languages\语言包\模板\email_extras.php 后台\includes\languages\语言包\email_extras.php 后台\incl ...

  8. Codeforces 999

    A /*Huyyt*/ #include<bits/stdc++.h> #define mem(a,b) memset(a,b,sizeof(a)) using namespace std ...

  9. redis缓存穿透-解决方案

    上面的解决方案个人觉得时有误的,因为就算缓存了value的null值,后面的接口请求还是会判断走数据库,所以看解决方案二 解决方案二: https://blog.csdn.net/muyi_amen/ ...

  10. 从给定的N个正数中选取若干个数之和最接近M

    https://blog.csdn.net/lsjseu/article/details/11660731