Redis实战之征服 Redis + Jedis + Spring (三)
一开始以为Spring下操作哈希表,列表,真就是那么土。恍惚间发现“stringRedisTemplate.opsForList()”的强大,抓紧时间恶补下。
通过spring-data-redis完成LINDEX, LLEN, LPOP, LPUSH, LRANGE, LREM, LSET, LTRIM, RPOP, RPUSH命令。其实还有一些命令,当前版本不支持。不过,这些List的操作方法可以实现队列,堆栈的正常操作,足够用了。
相关链接:
Redis实战之征服 Redis + Jedis + Spring (一)
Redis实战之征服 Redis + Jedis + Spring (二)
Redis实战之征服 Redis + Jedis + Spring (三)
为了简便操作,我使用了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);
- }
- }
/**
* 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);
- }
- }
/**
* 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实战之征服 Redis + Jedis + Spring (一)
Redis实战之征服 Redis + Jedis + Spring (二)
Redis实战之征服 Redis + Jedis + Spring (三)
Redis实战之征服 Redis + Jedis + Spring (三)的更多相关文章
- Redis实战之征服 Redis + Jedis + Spring (一)
Redis + Jedis + Spring (一)—— 配置&常规操作(GET SET DEL)接着需要快速的调研下基于Spring框架下的Redis操作. 相关链接: Redis实战 Re ...
- Redis实战之征服 Redis + Jedis + Spring (二)
不得不说,用哈希操作来存对象,有点自讨苦吃! 不过,既然吃了苦,也做个记录,也许以后API升级后,能好用些呢?! 或许,是我的理解不对,没有真正的理解哈希表. 相关链接: Redis实战 Redis实 ...
- Redis实战 | 5种Redis数据类型详解
我们知道Redis是目前非常主流的KV数据库,它因高性能的读写能力而著称,其实还有另外一个优势,就是Redis提供了更加丰富的数据类型,这使得Redis有着更加广泛的使用场景.那Redis提供给用户的 ...
- Redis 实战 —— 13. 扩展 Redis
简介 当数据量增大或者读写请求增多后,一台 Redis 服务器可能没办法再存储所有数据或者处理所有读写请求,那么就需要对 Redis 进行扩展,保证 Redis 在能存储所有数据对情况下,同时能正常处 ...
- 小D课堂 - 零基础入门SpringBoot2.X到实战_第9节 SpringBoot2.x整合Redis实战_40、Redis工具类封装讲解和实战
笔记 4.Redis工具类封装讲解和实战 简介:高效开发方式 Redis工具类封装讲解和实战 1.常用客户端 https://redisdesktop.com/download ...
- Redis实战之Redis + Jedis
用Memcached,对于缓存对象大小有要求,单个对象不得大于1MB,且不支持复杂的数据类型,譬如SET 等.基于这些限制,有必要考虑Redis! 相关链接: Redis实战 Redis实战之Redi ...
- Redis实战之Redis + Jedis[转]
http://blog.csdn.net/it_man/article/details/9730605 2013-08-03 11:01 1786人阅读 评论(0) 收藏 举报 目录(?)[-] ...
- Redis实战
大约一年多前,公司同事开始使用Redis,不清楚是配置,还是版本的问题,当时的Redis经常在使用一段时间后,连接爆满且不释放.印象中,Redis 2.4.8以下的版本由于设计上的主从库同步问题,就会 ...
- Redis实战篇
Redis实战篇 1 Redis 客户端 1.1 客户端通信 原理 客户端和服务器通过 TCP 连接来进行数据交互, 服务器默认的端口号为 6379 . 客户端和服务器发送的命令或数据一律以 \r\n ...
随机推荐
- VC编程技巧:IE控件的高级用法
一.如何显示内存中的 HTML 网页 二.屏蔽 IE 控件的上下文菜单 三.扩展 HTML 脚本中的 external 对象 四.显示 HTML 样式的对话窗 五.执行 HTML 脚本 http:// ...
- 不输入密码ssh直接登录阿里云Linux主机
服务器环境:阿里云云服务器,Linux版本 - CentOS 客户端环境:Mac OSX Terminal 注意: 如果有3个账号都要无密码登录, 则3个账号都要这么操作 在Terminal中用ssh ...
- poj 3267 The Cow Lexicon(dp)
题目:http://poj.org/problem?id=3267 题意:给定一个字符串,又给n个单词,求最少删除字符串里几个字母,能匹配到n个单词里 #include <iostream> ...
- POJ 3096 Surprising Strings(STL map string set vector)
题目:http://poj.org/problem?id=3096 题意:给定一个字符串S,从中找出所有有两个字符组成的子串,每当组成子串的字符之间隔着n字符时,如果没有相同的子串出现,则输出 &qu ...
- 设计模式 - observer
简单来讲,就是observer依赖于subject,当subject发生变化时,observer得到通知,并将状态与subject同步,常来用于维护对象间状态的一致性. observer的工作过程大体 ...
- poj2135
加深对最小费用最大流的理解题 题目求无向图来回和最短的路径,每条边只能走一次 不难想到,无向图中来回等于从源点出发走两条不同路径到汇点(区别于k短路,这里每条边只能走一次): 考虑到边的限制,不难想到 ...
- BZOJ_1019_[SHOI2008]_汉诺塔_(DP)
描述 http://www.lydsy.com/JudgeOnline/problem.php?id=1019 汉诺塔游戏,但是有移动优先级,在不违反原有规则的情况下,给定优先移动目标.求完成游戏所需 ...
- 使用powerdesigner 画图的详细说明
一.概念数据模型概述 数据模型是现实世界中数据特征的抽象.数据模型应该满足三个方面的要求: 1)能够比较真实地模拟现实世界 2)容易为人所理解 3)便于计算机实现 概念数据模型也称信息模型,它以实体- ...
- jquery Ajax应用总结
常见应用: 下面是Jquery中AJAX参数详细列表: 参数名 类型 描述 url String (默认: 当前页地址) 发送请求的地址. type String (默认: "GET&quo ...
- SharePoint 2013 入门教程--系列文章
转:http://www.cnblogs.com/jianyus/p/3381415.html 以下文章是自己在学习SharePoint的过程中,不断积累和总结的博文,现在总结一个目录,分享给大家.这 ...