`

初用redis缓存

阅读更多

srping 集成 redis

pom文件:

 

<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
    xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
    <modelVersion>4.0.0</modelVersion>
    <groupId>redis</groupId>
    <artifactId>redis</artifactId>
    <version>0.0.1-SNAPSHOT</version>
    <build>
    </build>
    <dependencies>
        <dependency>
            <groupId>org.springframework.data</groupId>
            <artifactId>spring-data-redis</artifactId>
            <version>1.0.2.RELEASE</version>
        </dependency>
    </dependencies>
</project>

 

spring 配置文件代码:

<?xml version="1.0" encoding="UTF-8"?>
<beans xmlns="http://www.springframework.org/schema/beans"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:p="http://www.springframework.org/schema/p"
xmlns:context="http://www.springframework.org/schema/context"
xmlns:util="http://www.springframework.org/schema/util" xmlns:mvc="http://www.springframework.org/schema/mvc"
xsi:schemaLocation="http://www.springframework.org/schema/util http://www.springframework.org/schema/util/spring-util-3.1.xsd
http://www.springframework.org/schema/beans  http://www.springframework.org/schema/beans/spring-beans-3.1.xsd
http://www.springframework.org/schema/context http://www.springframework.org/schema/context/spring-context-3.1.xsd
http://www.springframework.org/schema/mvc http://www.springframework.org/schema/mvc/spring-mvc-3.1.xsd">

<!--注解说明 -->
<context:annotation-config />
<!-- 把标记了@Controller注解的类转换为bean -->
<context:component-scan base-package="com.test.**" />
<!-- redis工厂 -->
<bean id="jedisConnectionFactory" class="org.springframework.data.redis.connection.jedis.JedisConnectionFactory"
    p:host-name="192.168.0.124" p:port="6379" p:password="123456" />
<!-- redis服务封装 -->
<bean id="redisService" class="com.test.redis.RedisService">
</bean>

 或者这样将spring和redis集成

spring 配置文件:

<?xml version="1.0" encoding="UTF-8"?>  
<beans xmlns="http://www.springframework.org/schema/beans"  
    xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:p="http://www.springframework.org/schema/p"  
    xmlns:context="http://www.springframework.org/schema/context"  
    xmlns:jee="http://www.springframework.org/schema/jee" xmlns:tx="http://www.springframework.org/schema/tx"  
    xmlns:aop="http://www.springframework.org/schema/aop"  
    xsi:schemaLocation="  
            http://www.springframework.org/schema/beans http://www.springframework.org/schema/beans/spring-beans.xsd  
            http://www.springframework.org/schema/context http://www.springframework.org/schema/context/spring-context.xsd">  
  
    <context:property-placeholder location="classpath:redis.properties" />  
  
    <bean id="poolConfig" class="redis.clients.jedis.JedisPoolConfig">  
        <property name="maxIdle" value="${redis.maxIdle}" />  
        <property name="maxActive" value="${redis.maxActive}" />  
        <property name="maxWait" value="${redis.maxWait}" />  
        <property name="testOnBorrow" value="${redis.testOnBorrow}" />  
    </bean>  
      
    <bean id="connectionFactory" class="org.springframework.data.redis.connection.jedis.JedisConnectionFactory"  
        p:host-name="${redis.host}" p:port="${redis.port}" p:password="${redis.pass}"  p:pool-config-ref="poolConfig"/>  
      
    <bean id="redisTemplate" class="org.springframework.data.redis.core.StringRedisTemplate">  
        <property name="connectionFactory"   ref="connectionFactory" />  
    </bean>         
      
    <bean id="userDao" class="com.x.dao.impl.UserDao" />   
</beans>  

 redis.properties:

# Redis settings  
redis.host=localhost  
redis.port=6379  
redis.pass=java2000_wl  
  
  
redis.maxIdle=300  
redis.maxActive=600  
redis.maxWait=1000  
redis.testOnBorrow=true

 redisService:

package com.test.redis;import java.util.Set;import org.springframework.beans.factory.annotation.Autowired;import org.springframework.beans.factory.annotation.Qualifier;import org.springframework.data.redis.connection.jedis.JedisConnectionFactory;import redis.clients.jedis.Jedis;publicclassRedisService{/**
     * 通过key删除(字节)
     * @param key
     */publicvoiddel(byte[] key){this.getJedis().del(key);}/**
     * 通过key删除
     * @param key
     */publicvoiddel(String key){this.getJedis().del(key);}/**
     * 添加key value 并且设置存活时间(byte)
     * @param key
     * @param value
     * @param liveTime
     */publicvoidset(byte[] key,byte[] value,int liveTime){this.set(key, value);this.getJedis().expire(key, liveTime);}/**
     * 添加key value 并且设置存活时间
     * @param key
     * @param value
     * @param liveTime
     */publicvoidset(String key,String value,int liveTime){this.set(key, value);this.getJedis().expire(key, liveTime);}/**
     * 添加key value
     * @param key
     * @param value
     */publicvoidset(String key,String value){this.getJedis().set(key, value);}/**添加key value (字节)(序列化)
     * @param key
     * @param value
     */publicvoidset(byte[] key,byte[] value){this.getJedis().set(key, value);}/**
     * 获取redis value (String)
     * @param key
     * @return
     */publicStringget(String key){String value =this.getJedis().get(key);return value;}/**
     * 获取redis value (byte [] )(反序列化)
     * @param key
     * @return
     */publicbyte[]get(byte[] key){returnthis.getJedis().get(key);}/**
     * 通过正则匹配keys
     * @param pattern
     * @return
     */publicSet<String> keys(String pattern){returnthis.getJedis().keys(pattern);}/**
     * 检查key是否已经存在
     * @param key
     * @return
     */publicboolean exists(String key){returnthis.getJedis().exists(key);}/**
     * 清空redis 所有数据
     * @return
     */publicString flushDB(){returnthis.getJedis().flushDB();}/**
     * 查看redis里有多少数据
     */publiclong dbSize(){returnthis.getJedis().dbSize();}/**
     * 检查是否连接成功
     * @return
     */publicString ping(){returnthis.getJedis().ping();}/**
     * 获取一个jedis 客户端
     * @return
     */privateJedis getJedis(){if(jedis ==null){return jedisConnectionFactory.getShardInfo().createResource();}return jedis;}privateRedisService(){}//操作redis客户端privatestaticJedis jedis;@Autowired@Qualifier("jedisConnectionFactory")privateJedisConnectionFactory jedisConnectionFactory;} 
public static void main(String[] args) throws InterruptedException {
        ApplicationContext app = new ClassPathXmlApplicationContext("classpath:spring-context.xml");
        //这里已经配置好,属于一个redis的服务接口
        RedisService redisService = (RedisService) app.getBean("redisService");

        String ping = redisService.ping();//测试是否连接成功,连接成功输出PONG
        System.out.println(ping);

        //首先,我们看下redis服务里是否有数据
        long dbSizeStart = redisService.dbSize();
        System.out.println(dbSizeStart);

        redisService.set("username", "oyhk");//设值(查看了源代码,默认存活时间30分钟)
        String username = redisService.get("username");//取值 
        System.out.println(username);
        redisService.set("username1", "oyhk1", 1);//设值,并且设置数据的存活时间(这里以秒为单位)
        String username1 = redisService.get("username1");
        System.out.println(username1);
        Thread.sleep(2000);//我睡眠一会,再去取,这个时间超过了,他的存活时间
        String liveUsername1 = redisService.get("username1");
        System.out.println(liveUsername1);//输出null

        //是否存在
        boolean exist = redisService.exists("username");
        System.out.println(exist);

        //查看keys
        Set<String> keys = redisService.keys("*");//这里查看所有的keys
        System.out.println(keys);//只有username username1(已经清空了)

        //删除
        redisService.set("username2", "oyhk2");
        String username2 = redisService.get("username2");
        System.out.println(username2);
        redisService.del("username2");
        String username2_2 = redisService.get("username2");
        System.out.println(username2_2);//如果为null,那么就是删除数据了

        //dbsize
        long dbSizeEnd = redisService.dbSize();
        System.out.println(dbSizeEnd);

        //清空reids所有数据
        //redisService.flushDB();
    }
分享到:
评论

相关推荐

    redis缓存安装包和教案

    本资源包含Redis缓存的安装包以及相关学习教程,特别是关于Redis持久化方式的教案,对于想要深入理解和应用Redis的开发者来说,是一份宝贵的学习资料。 首先,让我们深入了解一下Redis的安装过程。在Windows环境下...

    spring-boot-redis-annotation-demo:spring boot —— redis 缓存注解使用示例项目

    spring boot —— redis 缓存注解使用教程 示例项目地址: 依赖 在pom文件添加如下依赖 &lt;groupId&gt;org.springframework.boot &lt;artifactId&gt;spring-boot-starter-data-redis 配置 在application.yml配置文件添加...

    redis基础认识与使用

    Redis,全称Remote Dictionary Server,是一款高性能的键值存储系统,常被用作数据库、缓存和消息中间件。它的设计目标是速度和数据持久化,支持多种数据结构,如字符串、哈希、列表、集合、有序集合等,使得Redis在...

    Redis实战.pdf

    Redis,全称Remote Dictionary Server,是一款开源的、高性能的键值对存储系统,常用于数据库、缓存和消息中间件等场景。它以其快速、灵活和丰富的数据结构而备受青睐,广泛应用于互联网行业的高并发、低延迟场景。...

    Redis学习-实战.docx

    Spring Data Redis 是一个简化 Redis 数据访问的框架,提供了丰富的抽象层和工具类,使得开发者可以更加高效地使用 Redis。 - **配置 RedisTemplate**:通过 `RedisConnectionFactory` 和 `RedisTemplate` 类配置...

    redis可视化管理工具

    2. 添加键值的缓存生命周期的设置 3. 添加相关帮助菜单以及反馈信息 4. 优化list,set,hash,zset的分页操作,很大程度上避免了程序的崩溃 5. 优化布局,使用更方便快捷 6. 修复若干bugs 2015-07-04 初版发布1.0 1. ...

    Redis-x64-3.2.100免安装版配置+linux版.zip

    Redis是一种高性能的键值数据库,常用于数据缓存、消息队列和主从复制等场景。这个压缩包“Redis-x64-3.2.100免安装版配置+linux版.zip”提供了Windows和Linux两个平台上的Redis安装资源,包括不同版本的Redis。 在...

    php_redis-2.2.7-5.6-nts-vc11-x86,php_redis-2.2.5-5.6-ts-vc11-x86

    Redis是一种内存数据结构存储系统,常被用作数据库、缓存和消息中间件,支持字符串、哈希、列表、集合、有序集合等多种数据类型。 PHP 5.6是PHP的一个旧版本,它在2014年发布,并于2019年初停止了官方支持。尽管...

    Redis入门指南 第2版

    Redis,全称Remote Dictionary Server,是一款高性能的键值存储系统,广泛应用于缓存、消息队列、计数器等多个领域。本指南旨在帮助读者快速掌握Redis的基础知识和实际应用技巧。 在Redis的世界里,数据模型是最为...

    Another-Redis-Desktop-Manager.1.3.9.exe

    Redis,一个高性能的键值存储系统,被广泛应用于缓存、消息队列等多种场景。为了更方便地管理和操作Redis数据库,出现了许多图形化界面工具,其中Another Redis Desktop Manager(ARDM)便是其中之一。本文将详细...

    Redis实战 中文完成版

    - **电商网站**:使用Redis缓存商品信息,减少数据库访问频率,提升用户体验。 - **游戏开发**:Redis可以存储玩家数据和游戏状态,提高游戏的响应速度。 - **实时分析**:Redis的流(Stream)数据结构非常适合处理...

    Java面试解析总结:Java+Redis+数据库+解决方案+分布式...docx

    - **Redis缓存失效策略**:为了避免缓存雪崩等问题,Redis提供了多种缓存失效策略,如设置键的有效期、随机失效等。 #### RabbitMQ篇 - **RabbitMQ使用场景**:RabbitMQ作为一款开源的消息中间件,广泛应用于异步...

    Redis实战文档

    例如,Twitter利用Redis来存储和管理用户会话信息,Instagram则使用它来进行图片缓存和推荐算法计算。这些应用案例充分展示了Redis在处理大量并发请求和实时数据分析方面的强大能力。 #### 二、Redis核心特性与实践...

    Redis精讲.pdf

    - **背景介绍**:在90年代至2000年初,大多数网站的访问量相对较小,因此单个MySQL数据库能够轻松应对。那时的互联网环境主要是静态页面为主,动态交互较少。 - **数据存储瓶颈**: - **数据量过大**:单一服务器...

    学习笔记:300分钟吃透分布式缓存.docx

    因此,我们需要加强对缓存原理、缓存组件以及优秀缓存体系实践的理解,从系统架构之初就对缓存进行良好设计,降低缓存引入的副作用,让缓存体系成为服务系统高效稳定运行的强力基石。 Cache 的读写性能可以弥补 DB...

    初高级程序员面试简历模版

    对热帖排行模块,使用分布式缓存 Redis 和本地缓存 Caffeine 作为多级缓存,将 QPS 提升了 20 倍(10-200),大大提升了网站访问速度,并使用 Quartz 定时更新热帖排行榜。 个人荣誉 该部分介绍了候选人的个人荣誉...

    从一个小需求感受Redis的独特魅力(需求设计)

    在IT行业中,Redis是一个广泛应用的高性能键值存储系统,它以内存存储为主,支持多种数据结构,如字符串、哈希、列表、集合和有序集合,适用于缓存、消息队列等多种场景。在这个“程序员树洞”功能的需求设计中,...

    《项目可用》CacheUtil缓存工具类.rar

    在Java中,缓存可以是内存中的数据结构,如HashMap,也可以是专门的缓存库,如 Ehcache、Guava Cache 或 Redis。 2. **CacheUtil 类**:这个工具类很可能是为了简化缓存操作而设计的,它封装了缓存的增删改查等基本...

Global site tag (gtag.js) - Google Analytics