征服 Redis + Jedis + Spring (三)—— 列表操作【转】
一开始以为Spring下操作哈希表,列表,真就是那么土。恍惚间发现“stringRedisTemplate.opsForList()”的强大,抓紧时间恶补下。
相关链接:
征服 Redis + Jedis + Spring (一)—— 配置&常规操作(GET SET DEL)
征服 Redis + Jedis + Spring (二)—— 哈希表操作(HMGET HMSET)
征服 Redis + Jedis + Spring (三)—— 列表操作
通过spring-data-redis完成LINDEX, LLEN, LPOP, LPUSH, LRANGE, LREM, LSET, LTRIM, RPOP, RPUSH命令。其实还有一些命令,当前版本不支持。不过,这些List的操作方法可以实现队列,堆栈的正常操作,足够用了。
为了简便操作,我使用了StringRedisTemplate。用字符串操作做展示。当然,你可以继续使用RedisTemplate。
闲言少叙,上代码,一目了然:
- /**
- * Mar 5, 2013
- */
- package org.zlex.redis.support;
- import java.util.List;
- import org.springframework.beans.factory.annotation.Autowired;
- import org.springframework.data.redis.core.StringRedisTemplate;
- import org.springframework.stereotype.Component;
- /**
- *
- * @author snowolf
- * @version 1.0
- * @since 1.0
- */
- @Component("listOps")
- public class ListOps {
- @Autowired
- private StringRedisTemplate stringRedisTemplate;
- /**
- * 压栈
- *
- * @param key
- * @param value
- * @return
- */
- public Long push(String key, String value) {
- return stringRedisTemplate.opsForList().leftPush(key, value);
- }
- /**
- * 出栈
- *
- * @param key
- * @return
- */
- public String pop(String key) {
- return stringRedisTemplate.opsForList().leftPop(key);
- }
- /**
- * 入队
- *
- * @param key
- * @param value
- * @return
- */
- public Long in(String key, String value) {
- return stringRedisTemplate.opsForList().rightPush(key, value);
- }
- /**
- * 出队
- *
- * @param key
- * @return
- */
- public String out(String key) {
- return stringRedisTemplate.opsForList().leftPop(key);
- }
- /**
- * 栈/队列长
- *
- * @param key
- * @return
- */
- public Long length(String key) {
- return stringRedisTemplate.opsForList().size(key);
- }
- /**
- * 范围检索
- *
- * @param key
- * @param start
- * @param end
- * @return
- */
- public List<String> range(String key, int start, int end) {
- return stringRedisTemplate.opsForList().range(key, start, end);
- }
- /**
- * 移除
- *
- * @param key
- * @param i
- * @param value
- */
- public void remove(String key, long i, String value) {
- stringRedisTemplate.opsForList().remove(key, i, value);
- }
- /**
- * 检索
- *
- * @param key
- * @param index
- * @return
- */
- public String index(String key, long index) {
- return stringRedisTemplate.opsForList().index(key, index);
- }
- /**
- * 置值
- *
- * @param key
- * @param index
- * @param value
- */
- public void set(String key, long index, String value) {
- stringRedisTemplate.opsForList().set(key, index, value);
- }
- /**
- * 裁剪
- *
- * @param key
- * @param start
- * @param end
- */
- public void trim(String key, long start, int end) {
- stringRedisTemplate.opsForList().trim(key, start, end);
- }
- }
这里说明下,例如LPUSH,RPUSH,其实就是从左边压栈,还是从右边压栈的不同命令。可以把堆栈看作是一个从左至右的数组。如果左边压栈,右边出栈,那就是队列的入队/出队操作;如果左边压栈,左边出栈,那就是堆栈操作。
举个具体的例子:
队列操作:LPUSH入队,RPOP出队,同理,可把L|R替换。
堆栈操作:LPUSH压栈,LPOP出栈,同理,可把L|R替换。
下面进行测试用例,初始、结束时,分别做入队、出队操作,期间进行堆栈,队列操作。不用我细说了,看测试用例,很简单!
- /**
- * Mar 5, 2013
- */
- package org.zlex.redis;
- import static org.junit.Assert.*;
- import java.util.List;
- import org.junit.Before;
- import org.junit.After;
- import org.junit.Test;
- import org.springframework.context.ApplicationContext;
- import org.springframework.context.support.ClassPathXmlApplicationContext;
- import org.zlex.redis.support.ListOps;
- /**
- *
- * @author snowolf
- * @version 1.0
- * @since 1.0
- */
- public class ListOpsTest {
- private ApplicationContext app;
- private ListOps listOps;
- private String key = "queue";
- @Before
- public void before() throws Exception {
- app = new ClassPathXmlApplicationContext("applicationContext.xml");
- listOps = (ListOps) app.getBean("listOps");
- System.out.println("------------IN---------------");
- for (int i = 0; i < 5; i++) {
- String uid = "u" + i;
- System.out.println(uid);
- listOps.in(key, uid);
- }
- }
- @After
- public void after() {
- // ------------OUT---------------
- System.out.println("------------OUT---------------");
- long length = listOps.length(key);
- for (long i = 0; i < length; i++) {
- String uid = listOps.out(key);
- System.out.println(uid);
- }
- }
- @Test
- public void stack() {
- // ------------PUSH---------------
- String key = "stack";
- int len = 5;
- System.out.println("------------PUSH---------------");
- for (int i = 0; i < len; i++) {
- String uid = "u" + System.currentTimeMillis();
- System.out.println(uid);
- listOps.push(key, uid);
- }
- long length = listOps.length(key);
- assertEquals(len, length);
- // ------------POP---------------
- System.out.println("------------POP---------------");
- for (long i = 0; i < length; i++) {
- String uid = listOps.pop(key);
- System.out.println(uid);
- }
- }
- @Test
- public void index() {
- // -------------INDEX-------------
- String value = listOps.index(key, 3);
- assertEquals("u3", value);
- }
- @Test
- public void range() {
- // -------------RANGE-------------
- List<String> list = listOps.range(key, 3, 5);
- boolean result1 = list.contains("u3");
- assertEquals(true, result1);
- boolean result2 = list.contains("u1");
- assertEquals(false, result2);
- }
- @Test
- public void trim() {
- // ------------TRIM---------------
- List<String> list = listOps.range(key, 3, 5);
- listOps.trim(key, 3, 5);
- boolean result3 = list.contains("u1");
- assertEquals(false, result3);
- }
- @Test
- public void set() {
- // ------------SET-----------------
- List<String> list = listOps.range(key, 3, 5);
- listOps.set(key, 4, "ux4");
- boolean result4 = list.contains("u4");
- assertEquals(true, result4);
- }
- @Test
- public void remove() {
- // ------------REMOVE-----------------
- listOps.remove(key, 4, "u4");
- String value = listOps.index(key, 4);
- assertEquals(null, value);
- }
- }
回头继续整理,这个套路没错!
详见附件!
相关链接:
征服 Redis + Jedis + Spring (一)—— 配置&常规操作(GET SET DEL)
- spring-data-redis.zip (30.8 KB)
- 下载次数: 396
征服 Redis + Jedis + Spring (三)—— 列表操作【转】的更多相关文章
- 征服 Redis + Jedis + Spring —— 配置&常规操作
Spring提供了对于Redis的专门支持:spring-data-redis.此外,类似的还有: 我想大部分人对spring-data-hadoop.spring-data-mongodb.spri ...
- Redis实战之征服 Redis + Jedis + Spring (三)
一开始以为Spring下操作哈希表,列表,真就是那么土.恍惚间发现“stringRedisTemplate.opsForList()”的强大,抓紧时间恶补下. 通过spring-data-redis完 ...
- 征服 Redis + Jedis + Spring (一)—— 配置&常规操作(GET SET DEL)
有日子没写博客了,真的是忙得要疯掉. 完成项目基础架构搭建工作,解决了核心技术问题,接着需要快速的调研下基于Spring框架下的Redis操作. 相关链接: 征服 Redis 征服 Redis + J ...
- Redis实战之征服 Redis + Jedis + Spring (一)
Redis + Jedis + Spring (一)—— 配置&常规操作(GET SET DEL)接着需要快速的调研下基于Spring框架下的Redis操作. 相关链接: Redis实战 Re ...
- Redis实战之征服 Redis + Jedis + Spring (二)
不得不说,用哈希操作来存对象,有点自讨苦吃! 不过,既然吃了苦,也做个记录,也许以后API升级后,能好用些呢?! 或许,是我的理解不对,没有真正的理解哈希表. 相关链接: Redis实战 Redis实 ...
- Redis + Jedis + Spring (list操作)
为了简便操作,我使用了StringRedisTemplate.用字符串操作做展示.当然,你可以继续使用RedisTemplate. 闲言少叙,上代码,一目了然: /** * Mar 5, 2013 * ...
- Redis + Jedis + Spring 实例(对象的操作)
目录(?)[+] 不得不说,用哈希操作来存对象,有点自讨苦吃! 不过,既然吃了苦,也做个记录,也许以后API升级后,能好用些呢?! 或许,是我的理解不对,没有真正的理解哈希表. 一.预期 接上 ...
- redis jedis存储对象简单操作,map list 自定义对象
安装好redis,进行了基本的操作.包括对map list 和自定义对象的基本操作.笔记都在代码注释里,直接上代码. private Jedis jedis; @Before public void ...
- Redis + Jedis + Spring整合遇到的异常(转)
项目中需要用到缓存,经过比较后,选择了redis,客户端使用jedis连接,也使用到了spring提供的spring-data-redis.配置正确后启动tomcat,发现如下异常: Caused b ...
随机推荐
- 隐藏 Status Bar
iOS6和iOS7在隐藏 Status Bar 三种方式比较: Storyboard 界面上选中UIViewController,最右边Simulated Metrics找到 Status Bar 设 ...
- 关于textjs的tree带复选框的树
通过查阅一些资料和自己之前了解到的一些相关知识,有时项目中需要用到.话不多说,先看一下效果图: 我写的这人员选择的树,主要是改写了TreePanel,如下代码: ExtendTreePanel.js ...
- leetcode 第九题 Palindrome Number(java)
Palindrome Number time=434ms 负数不是回文数 public class Solution { public boolean isPalindrome(int x) { in ...
- 使用SeaJS实现模块化JavaScript开发(新)
本文转自张洋,因为SeaJS更新版本很快,所以原文中很多地方不太适用,在这里发布一个更新版. 前言 SeaJS是一个遵循CommonJS规范的JavaScript模块加载框架,可以实现JavaSc ...
- Java多线程初学者指南(9):为什么要进行数据同步
Java中的变量分为两类:局部变量和类变量.局部变量是指在方法内定义的变量,如在run方法中定义的变量.对于这些变量来说,并不存在线程之间共享的问题.因此,它们不需要进行数据同步.类变量是在类中定义的 ...
- 为什么手机连接wifi会显示已停用?
1.通常导致手机连接WiFi显示“已停用”故障的原因是由于无线路由器“安全模式”设置不当造成的,对此我们可以通过以下方法来解决: 2.根据无线路由器背面的信息(包括路由器IP地址,登陆用户名和密码), ...
- ORA-32001: write to SPFILE requested but no SPFILE specified at startup
SQL> alter system set sga_max_size=2048M scope=spfile; alter system set sga_max_size=2048M scop ...
- [PeterDLax著泛函分析习题参考解答]第4章 Hahn-Bananch 定理的应用
1. 证明: 若在 4.1 节中取 $S=\sed{\mbox{正整数}}$, $Y$ 是收敛数列构成的空间, $\ell$ 由 (14) 式定义, 则由 (4) 给出的 $p$ 和由 (11) 定义 ...
- 迷宫城堡--HDOJ 1269(Tarjan)
迷宫城堡 Time Limit: 2000/1000 MS (Java/Others) Memory Limit: 65536/32768 K (Java/Others)Total Submis ...
- HDU-1253 胜利大逃亡 (BFS)
此题可以做为三维深搜模板题.. 胜利大逃亡 Time Limit: 4000/2000 MS (Java/Others) Memory Limit: 65536/32768 K (Java/Ot ...