RedisTemplate常用集合使用說明-opsForZSet(六)
1、add(K key, V value, double score)
新增元素到變數中同時指定元素的分值。
Java程式碼 收藏程式碼
1.redisTemplate.opsForZSet().add(“zSetValue”,“A”,1);
2.redisTemplate.opsForZSet().add(“zSetValue”,“B”,3);
3.redisTemplate.opsForZSet().add(“zSetValue”,“C”,2);
4.redisTemplate.opsForZSet().add(“zSetValue”,“D”,5);
2、range(K key, long start, long end)
獲取變數指定區間的元素。
Java程式碼 收藏程式碼
1.Set zSetValue = redisTemplate.opsForZSet().range(“zSetValue”,0,-1);
2.System.out.println(“通過range(K key, long start, long end)方法獲取指定區間的元素:” + zSetValue);
3、rangeByLex(K key, RedisZSetCommands.Range range)
用於獲取滿足非score的排序取值。這個排序只有在有相同分數的情況下才能使用,如果有不同的分數則返回值不確定。
Java程式碼 收藏程式碼
1.RedisZSetCommands.Range range = new RedisZSetCommands.Range();
2.//range.gt(“A”);
3.range.lt(“D”);
4.zSetValue = redisTemplate.opsForZSet().rangeByLex(“zSetValue”, range);
5.System.out.println(“通過rangeByLex(K key, RedisZSetCommands.Range range)方法獲取滿足非score的排序取值元素:” + zSetValue);
4、rangeByLex(K key, RedisZSetCommands.Range range, RedisZSetCommands.Limit limit)
用於獲取滿足非score的設定下標開始的長度排序取值。
Java程式碼 收藏程式碼
1.RedisZSetCommands.Limit limit = new RedisZSetCommands.Limit();
2.limit.count(2);
3.//起始下標為0
4.limit.offset(1);
5.zSetValue = redisTemplate.opsForZSet().rangeByLex(“zSetValue”, range,limit);
6.System.out.println(“通過rangeByLex(K key, RedisZSetCommands.Range range, RedisZSetCommands.Limit limit)方法獲取滿足非score的排序取值元素:” + zSetValue);
5、add(K key, Set<ZSetOperations.TypedTuple<V>> tuples)
通過TypedTuple方式新增資料。
Java程式碼 收藏程式碼
1.ZSetOperations.TypedTuple typedTuple1 = new DefaultTypedTuple(“E”,6.0);
2.ZSetOperations.TypedTuple typedTuple2 = new DefaultTypedTuple(“F”,7.0);
3.ZSetOperations.TypedTuple typedTuple3 = new DefaultTypedTuple(“G”,5.0);
4.Set<ZSetOperations.TypedTuple> typedTupleSet = new HashSet<ZSetOperations.TypedTuple>();
5.typedTupleSet.add(typedTuple1);
6.typedTupleSet.add(typedTuple2);
7.typedTupleSet.add(typedTuple3);
8.redisTemplate.opsForZSet().add(“typedTupleSet”,typedTupleSet);
9.zSetValue = redisTemplate.opsForZSet().range(“typedTupleSet”,0,-1);
10.System.out.println(“通過add(K key, Set<ZSetOperations.TypedTuple> tuples)方法新增元素:” + zSetValue);
6、rangeByScore(K key, double min, double max)
根據設定的score獲取區間值。
Java程式碼 收藏程式碼
1.zSetValue = redisTemplate.opsForZSet().rangeByScore(“zSetValue”,1,2);
2.System.out.println(“通過rangeByScore(K key, double min, double max)方法根據設定的score獲取區間值:” + zSetValue);
7、rangeByScore(K key, double min, double max,long offset, long count)
根據設定的score獲取區間值從給定下標和給定長度獲取最終值。
Java程式碼 收藏程式碼
1.zSetValue = redisTemplate.opsForZSet().rangeByScore(“zSetValue”,1,5,1,3);
2.System.out.println(“通過rangeByScore(K key, double min, double max, long offset, long count)方法根據設定的score獲取區間值:” + zSetValue);
8、rangeWithScores(K key, long start, long end)
獲取RedisZSetCommands.Tuples的區間值。
Java程式碼 收藏程式碼
1.Set<ZSetOperations.TypedTuple> typedTupleSet = redisTemplate.opsForZSet().rangeWithScores(“typedTupleSet”,1,3);
2.Iterator<ZSetOperations.TypedTuple> iterator = typedTupleSet.iterator();
3.while (iterator.hasNext()){
4. ZSetOperations.TypedTuple typedTuple = iterator.next();
5. Object value = typedTuple.getValue();
6. double score = typedTuple.getScore();
7. System.out.println(“通過rangeWithScores(K key, long start, long end)方法獲取RedisZSetCommands.Tuples的區間值:” + value + “---->” + score );
8.}
9、rangeByScoreWithScores(K key, double min, double max)
獲取RedisZSetCommands.Tuples的區間值通過分值。
Java程式碼 收藏程式碼
1.Set<ZSetOperations.TypedTuple> typedTupleSet = redisTemplate.opsForZSet().rangeByScoreWithScores(“typedTupleSet”,5,8);
2.iterator = typedTupleSet.iterator();
3.while (iterator.hasNext()){
4. ZSetOperations.TypedTuple typedTuple = iterator.next();
5. Object value = typedTuple.getValue();
6. double score = typedTuple.getScore();
7. System.out.println(“通過rangeByScoreWithScores(K key, double min, double max)方法獲取RedisZSetCommands.Tuples的區間值通過分值:” + value + “---->” + score );
8.}
10、rangeByScoreWithScores(K key, double min, double max, long offset, long count)
獲取RedisZSetCommands.Tuples的區間值從給定下標和給定長度獲取最終值通過分值。
Java程式碼 收藏程式碼
1.Set<ZSetOperations.TypedTuple> typedTupleSet = redisTemplate.opsForZSet().rangeByScoreWithScores(“typedTupleSet”,5,8,1,1);
2.iterator = typedTupleSet.iterator();
3.while (iterator.hasNext()){
4. ZSetOperations.TypedTuple typedTuple = iterator.next();
5. Object value = typedTuple.getValue();
6. double score = typedTuple.getScore();
7. System.out.println(“通過rangeByScoreWithScores(K key, double min, double max, long offset, long count)方法獲取RedisZSetCommands.Tuples的區間值從給定下標和給定長度獲取最終值通過分值:” + value + “---->” + score );
8.}
11、count(K key, double min, double max)
獲取區間值的個數。
Java程式碼 收藏程式碼
1.long count = redisTemplate.opsForZSet().count(“zSetValue”,1,5);
2.System.out.println(“通過count(K key, double min, double max)方法獲取區間值的個數:” + count);
12、rank(K key, Object o)
獲取變數中元素的索引,下標開始位置為0。
Java程式碼 收藏程式碼
1.long index = redisTemplate.opsForZSet().rank(“zSetValue”,“B”);
2.System.out.println(“通過rank(K key, Object o)方法獲取變數中元素的索引:” + index);
13、scan(K key, ScanOptions options)
匹配獲取鍵值對,ScanOptions.NONE為獲取全部鍵值對;ScanOptions.scanOptions().match("C").build()匹配獲取鍵位map1的鍵值對,不能模糊匹配。
Java程式碼 收藏程式碼
1.//Cursor cursor = redisTemplate.opsForSet().scan(“setValue”, ScanOptions.NONE);
2.Cursor<ZSetOperations.TypedTuple> cursor = redisTemplate.opsForZSet().scan(“zSetValue”, ScanOptions.NONE);
3.while (cursor.hasNext()){
4. ZSetOperations.TypedTuple typedTuple = cursor.next();
5. System.out.println(“通過scan(K key, ScanOptions options)方法獲取匹配元素:” + typedTuple.getValue() + “—>” + typedTuple.getScore());
6.}
14、score(K key, Object o)
獲取元素的分值。
Java程式碼 收藏程式碼
1.double score = redisTemplate.opsForZSet().score(“zSetValue”,“B”);
2.System.out.println(“通過score(K key, Object o)方法獲取元素的分值:” + score);
15、zCard(K key)
獲取變數中元素的個數。
Java程式碼 收藏程式碼
1.long zCard = redisTemplate.opsForZSet().zCard(“zSetValue”);
2.System.out.println(“通過zCard(K key)方法獲取變數的長度:” + zCard);
16、incrementScore(K key, V value, double delta)
修改變數中的元素的分值。
Java程式碼 收藏程式碼
1.double incrementScore = redisTemplate.opsForZSet().incrementScore(“zSetValue”,“C”,5);
2.System.out.print(“通過incrementScore(K key, V value, double delta)方法修改變數中的元素的分值:” + incrementScore);
3.score = redisTemplate.opsForZSet().score(“zSetValue”,“C”);
4.System.out.print(",修改後獲取元素的分值:" + score);
5.zSetValue = redisTemplate.opsForZSet().range(“zSetValue”,0,-1);
6.System.out.println(",修改後排序的元素:" + zSetValue);
17、reverseRange(K key, long start, long end)
索引倒序排列指定區間元素。
Java程式碼 收藏程式碼
1.zSetValue = redisTemplate.opsForZSet().reverseRange(“zSetValue”,0,-1);
2.System.out.println(“通過reverseRange(K key, long start, long end)方法倒序排列元素:” + zSetValue);
18、reverseRangeByScore(K key, double min, double max)
倒序排列指定分值區間元素。
Java程式碼 收藏程式碼
1.zSetValue = redisTemplate.opsForZSet().reverseRangeByScore(“zSetValue”,1,5);
2.System.out.println(“通過reverseRangeByScore(K key, double min, double max)方法倒序排列指定分值區間元素:” + zSetValue);
19、reverseRangeByScore(K key, double min, double max, long offset, long count)
倒序排列從給定下標和給定長度分值區間元素。
Java程式碼 收藏程式碼
1.zSetValue = redisTemplate.opsForZSet().reverseRangeByScore(“zSetValue”,1,5,1,2);
2.System.out.println(“通過reverseRangeByScore(K key, double min, double max, long offset, long count)方法倒序排列從給定下標和給定長度分值區間元素:” + zSetValue);
20、reverseRangeByScoreWithScores(K key, double min, double max)
倒序排序獲取RedisZSetCommands.Tuples的分值區間值。
Java程式碼 收藏程式碼
1.Set<ZSetOperations.TypedTuple> typedTupleSet = redisTemplate.opsForZSet().reverseRangeByScoreWithScores(“zSetValue”,1,5);
2.iterator = typedTupleSet.iterator();
3.while (iterator.hasNext()){
4. ZSetOperations.TypedTuple typedTuple = iterator.next();
5. Object value = typedTuple.getValue();
6. double score1 = typedTuple.getScore();
7. System.out.println(“通過reverseRangeByScoreWithScores(K key, double min, double max)方法倒序排序獲取RedisZSetCommands.Tuples的區間值:” + value + “---->” + score1 );
8.}
21、reverseRangeByScoreWithScores(K key, double min, double max, long offset, long count)
倒序排序獲取RedisZSetCommands.Tuples的從給定下標和給定長度分值區間值。
Java程式碼 收藏程式碼
1.Set<ZSetOperations.TypedTuple> typedTupleSet = redisTemplate.opsForZSet().reverseRangeByScoreWithScores(“zSetValue”,1,5,1,2);
2.iterator = typedTupleSet.iterator();
3.while (iterator.hasNext()){
4. ZSetOperations.TypedTuple typedTuple = iterator.next();
5. Object value = typedTuple.getValue();
6. double score1 = typedTuple.getScore();
7. System.out.println(“通過reverseRangeByScoreWithScores(K key, double min, double max, long offset, long count)方法倒序排序獲取RedisZSetCommands.Tuples的從給定下標和給定長度區間值:” + value + “---->” + score1 );
8.}
22、reverseRangeWithScores(K key, long start, long end)
索引倒序排列區間值。
Java程式碼 收藏程式碼
1.Set<ZSetOperations.TypedTuple> typedTupleSet = redisTemplate.opsForZSet().reverseRangeWithScores(“zSetValue”,1,5);
2.iterator = typedTupleSet.iterator();
3.while (iterator.hasNext()){
4. ZSetOperations.TypedTuple typedTuple = iterator.next();
5. Object value = typedTuple.getValue();
6. double score1 = typedTuple.getScore();
7. System.out.println(“通過reverseRangeWithScores(K key, long start, long end)方法索引倒序排列區間值:” + value + “----->” + score1);
8.}
23、reverseRank(K key, Object o)
獲取倒序排列的索引值。
Java程式碼 收藏程式碼
1.long reverseRank = redisTemplate.opsForZSet().reverseRank(“zSetValue”,“B”);
2.System.out.println(“通過reverseRank(K key, Object o)獲取倒序排列的索引值:” + reverseRank);
24、intersectAndStore(K key, K otherKey, K destKey)
獲取2個變數的交集存放到第3個變數裡面。
Java程式碼 收藏程式碼
1.redisTemplate.opsForZSet().intersectAndStore(“zSetValue”,“typedTupleSet”,“intersectSet”);
2.zSetValue = redisTemplate.opsForZSet().range(“intersectSet”,0,-1);
3.System.out.println(“通過intersectAndStore(K key, K otherKey, K destKey)方法獲取2個變數的交集存放到第3個變數裡面:” + zSetValue);
25、intersectAndStore(K key, Collection<K> otherKeys, K destKey)
獲取多個變數的交集存放到第3個變數裡面。
Java程式碼 收藏程式碼
1.List list = new ArrayList();
2.list.add(“typedTupleSet”);
3.redisTemplate.opsForZSet().intersectAndStore(“zSetValue”,list,“intersectListSet”);
4.zSetValue = redisTemplate.opsForZSet().range(“intersectListSet”,0,-1);
5.System.out.println(“通過intersectAndStore(K key, Collection otherKeys, K destKey)方法獲取多個變數的交集存放到第3個變數裡面:” + zSetValue);
26、unionAndStore(K key, K otherKey, K destKey)
獲取2個變數的合集存放到第3個變數裡面。
Java程式碼 收藏程式碼
1.redisTemplate.opsForZSet().unionAndStore(“zSetValue”,“typedTupleSet”,“unionSet”);
2.zSetValue = redisTemplate.opsForZSet().range(“unionSet”,0,-1);
3.System.out.println(“通過unionAndStore(K key, K otherKey, K destKey)方法獲取2個變數的交集存放到第3個變數裡面:” + zSetValue);
27、unionAndStore(K key, Collection<K> otherKeys, K destKey)
獲取多個變數的合集存放到第3個變數裡面。
Java程式碼 收藏程式碼
1.redisTemplate.opsForZSet().unionAndStore(“zSetValue”,list,“unionListSet”);
2.zSetValue = redisTemplate.opsForZSet().range(“unionListSet”,0,-1);
3.System.out.println(“通過unionAndStore(K key, Collection otherKeys, K destKey)方法獲取多個變數的交集存放到第3個變數裡面:” + zSetValue);
28、remove(K key, Object... values)
批量移除元素根據元素值。
Java程式碼 收藏程式碼
1.long removeCount = redisTemplate.opsForZSet().remove(“unionListSet”,“A”,“B”);
2.zSetValue = redisTemplate.opsForZSet().range(“unionListSet”,0,-1);
3.System.out.print(“通過remove(K key, Object… values)方法移除元素的個數:” + removeCount);
4.System.out.println(",移除後剩餘的元素:" + zSetValue);
29、removeRangeByScore(K key, double min, double max)
根據分值移除區間元素。
Java程式碼 收藏程式碼
1.removeCount = redisTemplate.opsForZSet().removeRangeByScore(“unionListSet”,3,5);
2.zSetValue = redisTemplate.opsForZSet().range(“unionListSet”,0,-1);
3.System.out.print(“通過removeRangeByScore(K key, double min, double max)方法移除元素的個數:” + removeCount);
4.System.out.println(",移除後剩餘的元素:" + zSetValue);
30、removeRange(K key, long start, long end)
根據索引值移除區間元素。
Java程式碼 收藏程式碼
1.removeCount = redisTemplate.opsForZSet().removeRange(“unionListSet”,3,5);
2.zSetValue = redisTemplate.opsForZSet().range(“unionListSet”,0,-1);
3.System.out.print(“通過removeRange(K key, long start, long end)方法移除元素的個數:” + removeCount);
4.System.out.println(",移除後剩餘的元素:" + zSetValue);
在此,RedisTemplate.java類相關的集合操作就介紹完了。
相關文章
- RedisTemplate常用集合使用說明-boundSetOps(九)Redis
- goldengate常用函式使用說明Go函式
- Hibernate常用API以及使用說明API
- AndroidAnnotation常用註解使用說明Android
- 常用埠說明
- goldengate常用命令使用說明Go
- Memcached常用命令及使用說明
- mysql常用引數使用說明及查詢MySql
- 使用說明
- RHEL 7特性說明(六):叢集
- LINUX常用檔案說明Linux
- SVN常用命令說明
- WebApiClientCore使用說明WebAPIclient
- QLExpress使用說明Express
- postman 使用說明Postman
- Sqlite使用說明SQLite
- certbot 使用說明
- cmake使用說明
- linux常用核心引數說明Linux
- 2.--Goldgate常用引數說明Go
- Python常用函式及說明Python函式
- oracle 常用檢視 簡短說明Oracle
- 常用10個LINUX命令說明Linux
- Standby資料庫常用操作說明資料庫
- JPA EntityManager使用說明
- wc 命令使用說明
- oracle orapwd使用說明Oracle
- Jupiter 使用說明
- BaseRecyclerViewAdapterHelper使用說明ViewAPT
- HSQL DB 使用說明SQL
- FreeSql 使用說明SQL
- MySQL 5.6 sql_mode常用值說明MySql
- C# BitmapData使用說明C#
- axios使用說明書iOS
- ApplicationContextAware使用說明APPContext
- 微前端說明以及使用前端
- IDEA Git 使用說明IdeaGit
- SCREEN安裝使用說明