stringRedisTemplate怎么操作list
时间: 2023-12-03 13:42:18 浏览: 65
Spring Boot 搭建以及集成 StringRedisTemplate
5星 · 资源好评率100%
使用StringRedisTemplate可以通过以下方法来操作list:
1. 从左边插入元素:
```
stringRedisTemplate.opsForList().leftPush("listKey", "value");
```
2. 从右边插入元素:
```
stringRedisTemplate.opsForList().rightPush("listKey", "value");
```
3. 获取list的长度:
```
stringRedisTemplate.opsForList().size("listKey");
```
4. 获取指定范围内的元素:
```
stringRedisTemplate.opsForList().range("listKey", startIndex, endIndex);
```
5. 获取指定索引的元素:
```
stringRedisTemplate.opsForList().index("listKey", index);
```
6. 从左边弹出元素:
```
stringRedisTemplate.opsForList().leftPop("listKey");
```
7. 从右边弹出元素:
```
stringRedisTemplate.opsForList().rightPop("listKey");
```
8. 从左边弹出元素并插入到另一个list中:
```
stringRedisTemplate.opsForList().leftPop("listKey", "otherListKey");
```
9. 从右边弹出元素并插入到另一个list中:
```
stringRedisTemplate.opsForList().rightPop("listKey", "otherListKey");
```
10. 删除指定元素:
```
stringRedisTemplate.opsForList().remove("listKey", count, "value");
```
阅读全文