Spring Data Redis应用场景

---------------------------Spring Data Redis-------------------
一、spring data redis介绍?

1、什么是spring data?
    spring data是用于简化数据库访问的开源框架,主要包括:redis、jdbc、elasticsearch
2、什么是spring data redis?
    spring data redis是spring data下的一个子模块,作用:简化redis操作
3、为什么用RedisTemplate而不用jedis?
    springboot2.x后redisTemplate默认底层是lettuce(netty(nio)),大并发下lettuce效果更高
    RedisTemplate可以设置通用的序列化器
4、spring data redis的启动器
    spring-boot-starter-data-redis

二、spring data redis入门

1、pom.xml
    spring-boot-starter-web
    spring-boot-starter-data-redis
    spring-boot-starter-test
2、application.yml
    spring:
      redis:
        cluster:
          nodes:
            - 192.168.204.132:7001
            - 192.168.204.132:7002
            - 192.168.204.132:7003
            - 192.168.204.132:7004
            - 192.168.204.132:7005
            - 192.168.204.132:7006
        jedis:
          pool:
            max-active: 20 #连接池最大连接数
            max-idle: 10 #连接池中的最大空闲连接
            min-idle: 5 # 连接池中的最小空闲连接

``
在这里插入图片描述

3、config(配置)

package com.powershop.config;

import org.springframework.context.annotation.Bean;
import org.springframework.context.annotation.Configuration;
import org.springframework.data.redis.connection.RedisConnectionFactory;
import org.springframework.data.redis.core.RedisTemplate;
import org.springframework.data.redis.serializer.GenericJackson2JsonRedisSerializer;
import org.springframework.data.redis.serializer.StringRedisSerializer;

@Configuration
public class RedisConfig {

    @Bean
    public RedisTemplate redisTemplate(RedisConnectionFactory factory){
	RedisTemplate redisTemplate = new RedisTemplate();
	redisTemplate.setConnectionFactory(factory);

	//设置通用序列器
	redisTemplate.setKeySerializer(new StringRedisSerializer());
	redisTemplate.setValueSerializer(new GenericJackson2JsonRedisSerializer());

	redisTemplate.setHashKeySerializer(new StringRedisSerializer());
	redisTemplate.setHashValueSerializer(new GenericJackson2JsonRedisSerializer());

	return redisTemplate;
    }

}

在这里插入图片描述
4、封装RedisTempLate

package com.powershop.utils;

import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.data.redis.core.RedisTemplate;
import org.springframework.stereotype.Component;

import java.util.List;
import java.util.Set;
import java.util.concurrent.TimeUnit;

//封装redistemplate
@Component
public class RedisClient {

    @Autowired
    private RedisTemplate redisTemplate;


    /**
     * 指定缓存失效时间
     * @param key 键
     * @param time 时间(秒)
     * @return
     */
    public boolean expire(String key,long time){
	try {
	    if(time>0){
		redisTemplate.expire(key, time, TimeUnit.SECONDS);
	    }
	    return true;
	} catch (Exception e) {
	    e.printStackTrace();
	    return false;
	}
    }

    /**
     * 根据key 获取过期时间
     * @param key 键 不能为null
     * @return 时间(秒) 返回0代表为永久有效
     */
    public long ttl(String key){
	return redisTemplate.getExpire(key,TimeUnit.SECONDS);
    }

    /**
     * 判断key是否存在
     * @param key 键
     * @return true 存在 false不存在
     */
    public Boolean exists(String key){
	return redisTemplate.hasKey(key);
    }

    //============================String=============================
    /**
     * 普通缓存获取
     * @param key 键
     * @return 值
     */
    public Object get(String key){
	return key==null?null:redisTemplate.opsForValue().get(key);
    }

    /**
     * 普通缓存放入
     * @param key 键
     * @param value 值
     * @return true成功 false失败
     */
    public boolean set(String key,Object value) {
	try {
	    redisTemplate.opsForValue().set(key, value);
	    return true;
	} catch (Exception e) {
	    e.printStackTrace();
	    return false;
	}
    }

    /**
     * 删除缓存
     * @param key 可以传一个值 或多个
     */
    public Boolean del(String key){
	return redisTemplate.delete(key);
    }

    /**
     * 递增
     * @param key 键
     * @param delta 要增加几(大于0)
     * @return
     */
    public long incr(String key, long delta){
	if(delta<0){
	    throw new RuntimeException("递增因子必须大于0");
	}
	return redisTemplate.opsForValue().increment(key, delta);
    }

    /**
     * 递减
     * @param key 键
     * @param delta 要减少几(小于0)
     * @return
     */
    public long decr(String key, long delta){
	if(delta<0){
	    throw new RuntimeException("递减因子必须大于0");
	}
	return redisTemplate.opsForValue().decrement(key, -delta);
    }

    //================================hash=================================
    /**
     * HashGet
     * @param key 键 不能为null
     * @param item 项 不能为null
     * @return 值
     */
    public Object hget(String key,String item){
	return redisTemplate.opsForHash().get(key, item);
    }

    /**
     * 向一张hash表中放入数据,如果不存在将创建
     * @param key 键
     * @param item 项
     * @param value 值
     * @return true 成功 false失败
     */
    public boolean hset(String key,String item,Object value) {
	try {
	    redisTemplate.opsForHash().put(key, item, value);
	    return true;
	} catch (Exception e) {
	    e.printStackTrace();
	    return false;
	}
    }

    /**
     * 删除hash表中的值
     * @param key 键 不能为null
     * @param item 项 可以使多个 不能为null
     */
    public void hdel(String key, Object... item){
	redisTemplate.opsForHash().delete(key,item);
    }

    //============================set=============================
    /**
     * 根据key获取Set中的所有值
     * @param key 键
     * @return
     */
    public Set<Object> smembers(String key){
	try {
	    return redisTemplate.opsForSet().members(key);
	} catch (Exception e) {
	    e.printStackTrace();
	    return null;
	}
    }

    /**
     * 将数据放入set缓存
     * @param key 键
     * @param values 值 可以是多个
     * @return 成功个数
     */
    public long sadd(String key, Object...values) {
	try {
	    return redisTemplate.opsForSet().add(key, values);
	} catch (Exception e) {
	    e.printStackTrace();
	    return 0;
	}
    }


    /**
     * 移除值为value的
     * @param key 键
     * @param values 值 可以是多个
     * @return 移除的个数
     */
    public long srem(String key, Object ...values) {
	try {
	    Long count = redisTemplate.opsForSet().remove(key, values);
	    return count;
	} catch (Exception e) {
	    e.printStackTrace();
	    return 0;
	}
    }
    //===============================list=================================

    /**
     * 获取list缓存的内容
     * @param key 键
     * @param start 开始
     * @param end 结束  0 到 -1代表所有值
     * @return
     */
    public List<Object> lrange(String key, long start, long end){
	try {
	    return redisTemplate.opsForList().range(key, start, end);
	} catch (Exception e) {
	    e.printStackTrace();
	    return null;
	}
    }

    /**
     * 将list放入缓存
     * @param key 键
     * @param value 值
     * @return
     */
    public boolean rpush(String key, Object value) {
	try {
	    redisTemplate.opsForList().rightPush(key, value);
	    return true;
	} catch (Exception e) {
	    e.printStackTrace();
	    return false;
	}
    }

    /**
     * 将list放入缓存
     * @param key 键
     * @param value 值
     * @return
     */
    public boolean lpush(String key, List<Object> value) {
	try {
	    redisTemplate.opsForList().rightPushAll(key, value);
	    return true;
	} catch (Exception e) {
	    e.printStackTrace();
	    return false;
	}
    }

    /**
     * 移除N个值为value
     * @param key 键
     * @param count 移除多少个
     * @param value 值
     * @return 移除的个数
     */
    public long lrem(String key,long count,Object value) {
	try {
	    Long remove = redisTemplate.opsForList().remove(key, count, value);
	    return remove;
	} catch (Exception e) {
	    e.printStackTrace();
	    return 0;
	}
    }
}

``
5、application.yml (提供服务者方)
在这里插入图片描述

   redis:
    cluster:
      nodes:
	- 192.168.126.135:7001
	- 192.168.126.135:7002
	- 192.168.126.135:7003
	- 192.168.126.135:7004
	- 192.168.126.135:7005
	- 192.168.126.135:7006
    jedis:
      pool:
	max-active: 20 #连接池最大连接数
	max-idle: 10 #连接池中的最大空闲连接
	min-idle: 5 # 连接池中的最小空闲连接
#配置缓存首页商品分类的 key
   PROTAL_CATRESULT_KEY: PROTAL_CATRESULT_KEY
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值