`

Redis实战之征服 Redis + Jedis + Spring (三)

 
阅读更多
Redis实战之征服 Redis + Jedis + Spring (三)
分类: 开源应用系统 2013-08-03 11:07 1176人阅读 评论(0) 收藏 举报
一开始以为Spring下操作哈希表,列表,真就是那么土。恍惚间发现“stringRedisTemplate.opsForList()”的强大,抓紧时间恶补下。

通过spring-data-redis完成LINDEX, LLEN, LPOP, LPUSH, LRANGE, LREM, LSET, LTRIM, RPOP, RPUSH命令。其实还有一些命令,当前版本不支持。不过,这些List的操作方法可以实现队列,堆栈的正常操作,足够用了。



相关链接:

Redis实战

Redis实战之Redis + Jedis

Redis实战之征服 Redis + Jedis + Spring (一)

Redis实战之征服 Redis + Jedis + Spring (二)

Redis实战之征服 Redis + Jedis + Spring (三)



为了简便操作,我使用了StringRedisTemplate。用字符串操作做展示。当然,你可以继续使用RedisTemplate。

闲言少叙,上代码,一目了然:



Java代码 
/**
* 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); 
    } 

[java] view plaincopy
/**
* 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替换。



下面进行测试用例,初始、结束时,分别做入队、出队操作,期间进行堆栈,队列操作。不用我细说了,看测试用例,很简单!



Java代码 
/**
* 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); 
 
    } 

[java] view plaincopy
/**
* 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+spring jedis方式

    标题提到的"redis+spring jedis方式",意味着我们将讨论如何通过Spring Data Redis结合Jedis来操作Redis。首先,你需要在项目中引入Spring Data Redis库,版本如描述中所示为`spring-data-redis-1.3.4.RELEASE.jar`...

    Shiro + JWT + SpringBoot + MySQL + Redis(Jedis)实现无状态鉴权机制

    本项目结合了Apache Shiro、JSON Web Token (JWT)、SpringBoot、MySQL数据库以及Redis缓存技术(通过Jedis客户端)来实现这一机制。下面我们将详细探讨这些组件在实现无状态鉴权中的作用。 **Apache Shiro** Apache...

    征服 Redis + Jedis + Spring (三)—— 列表操作

    总的来说,“征服 Redis + Jedis + Spring (三)—— 列表操作”这个主题涵盖了 Redis 的列表数据类型、Jedis 的客户端操作以及 Spring Data Redis 提供的高级抽象。理解并掌握这些知识点,将有助于你在开发过程中...

    SpringBoot+Shiro+JWT+Jedis+MybatisPlus+前后端分离+基于url通用权限管理系统

    Jedis是Redis的Java客户端,Redis是一个高性能的键值存储系统,常用于缓存。在这里,Jedis被用来配合Shiro存储和验证JWT令牌,提高系统的响应速度和效率。通过将令牌存储在Redis中,可以实现分布式环境下的会话共享...

    spring-data + jedis + redis代码

    本项目聚焦于Spring Data与Jedis的集成,用于利用Redis作为缓存解决方案。Jedis是Java的一个开源客户端,专门用于连接和操作Redis服务器。 首先,让我们详细了解一下Spring Data。Spring Data是一个模块化的项目,...

    Redis最全资料+工具+案例+详细说明(有单独使用的jedis也有结合spring使用的redis)

    总的来说,这个压缩包提供的资料应该覆盖了Redis的基础知识,包括Jedis的使用、Spring Data Redis的集成、实际案例以及安装教程。对于Java开发者来说,掌握这些内容将有助于在项目中高效地利用Redis进行数据存储和...

    redis(哨兵模式配置) + springmvc

    &lt;bean id="jedisConnectionFactory" class="org.springframework.data.redis.connection.jedis.JedisConnectionFactory"&gt; &lt;bean class="org.springframework.data.redis.sentinel.Configuration"&gt; ...

    Spring+Struts2+hibernate+Redis整合

    在IT行业中,SSH(Spring、Struts2、Hibernate)是一个经典的Java Web开发框架组合,而Redis则是一个高性能的键值存储系统,常用于缓存和数据持久化。将SSH与Redis整合,可以提升应用程序的性能和响应速度。下面将...

    spring + ehcache + redis两级缓存

    2. **配置Redis**: 接下来,我们需要添加Redis的客户端库(如Jedis或Lettuce)并配置连接到Redis服务器。在Spring中,可以通过`RedisTemplate`或`StringRedisTemplate`来操作Redis,并配置`@EnableCaching`中的`...

    redis3.0widows集群+spring整合jedis

    redis3.0 widows集群 spring整合jedis redis搭建window集群代码和文档rubygems-2.5.1和rubyinstaller-2.2.3-x64软件下载

    springcloud部署redis集群

    在部署Redis集群前,你需要准备至少三个物理或虚拟机,因为Redis集群至少需要三个主节点来保证数据的可用性。每个节点都需要安装并启动Redis服务器。节点间需要通过网络连接,并配置好相应的端口(默认为6379,集群...

    征服 Redis + Jedis + Spring (二)—— 哈希表操作(HMGET HMSET)

    在本篇博客“征服 Redis + Jedis + Spring (二)—— 哈希表操作(HMGET HMSET)”中,我们将深入探讨如何利用Redis、Jedis库以及Spring框架进行哈希表的操作,特别是`HMGET`和`HMSET`这两个重要的命令。...

    spring-data-redis-1.6.0.RELEASE.jar + jedis-2.7.2.jar

    总结来说,Spring Data Redis结合Jedis,为Java开发者提供了一个强大的工具集,使得在Spring应用中利用Redis的高效特性和丰富功能变得轻而易举。通过理解这三个组件的工作原理和相互配合,可以有效地提升应用的性能...

    spring boot + jedis

    本项目是关于如何将Spring Boot与Redis集成,使用Java的Jedis客户端进行操作。下面我们将深入探讨这些知识点。 首先,让我们了解Spring Boot如何集成Redis。在Spring Boot中,我们只需要在`pom.xml`或`build.gradle...

    spring-data-redis-1.6.0.RELEASE.jar + jedis-2.7.2.jar包

    综上所述,"spring-data-redis-1.6.0.RELEASE.jar + jedis-2.7.2.jar"组合提供了Spring应用程序与Redis交互的强大工具集,涵盖了从基本操作到复杂应用场景的各种功能。在实际开发中,你需要根据项目需求选择合适的...

    Springboot+redis+mybatisplus实例

    在IT行业中,Spring Boot、Redis和MyBatis-Plus是三个非常重要的技术组件,它们各自在不同的领域发挥着关键作用。下面将详细讲解这三个技术及其整合应用。 **Spring Boot** Spring Boot是由Pivotal团队提供的全新...

    spring + redis + sentinel 配置

    在这个"spring + redis + sentinel"配置中,我们将探讨如何整合这三个组件以创建一个稳定且高度可用的缓存系统。 首先,`redis.properties`文件是Spring与Redis连接的关键配置文件。在该文件中,通常会包含以下内容...

    spring-data-redis-1.6.0.RELEASE.jar + jedis-2.7.2.jar.rar

    包含Java说明文件、配置代码、redis相应版本的Jar 1、代码片段要求的框架为:SpringMVC,但原理都是一样的,采用其他方式也可以。 2、RedisMng为简单封装的接口,不封装,直接采用redisTemplate也可以。

    Spring mvc整合redis实例(redis连接池)

    在Maven项目中,可以在pom.xml文件中添加`spring-data-redis`和`jedis`库,这两个库分别提供了Spring对Redis的支持和Jedis,一个Java客户端连接Redis。 ```xml &lt;groupId&gt;org.springframework.data &lt;artifactId&gt;...

    spring+mybatis+redis

    在spring+spring mvc+mybatis模式下,使用的最多的就是jedis,但是spring boot整合了redis后,依然可以使用jedis,但是同时也提供了一个RedisTemplate和StringRedisTemplate,RedisTemplate使用的序列化类是默认...

Global site tag (gtag.js) - Google Analytics