溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊(cè)×
其他方式登錄
點(diǎn)擊 登錄注冊(cè) 即表示同意《億速云用戶服務(wù)條款》

Spring Data Redis的使用方法

發(fā)布時(shí)間:2020-06-03 14:29:14 來(lái)源:億速云 閱讀:273 作者:Leah 欄目:編程語(yǔ)言

這篇文章給大家分享的是有關(guān)Spring Data Redis的使用方法。小編覺(jué)得挺實(shí)用的,因此分享給大家學(xué)習(xí)。如下資料是關(guān)于Spring Data Redis的實(shí)現(xiàn)步驟。

1.項(xiàng)目常見問(wèn)題思考

對(duì)于電商系統(tǒng)的廣告后臺(tái)管理和廣告前臺(tái)展示,首頁(yè)每天有大量的人訪問(wèn),對(duì)數(shù)據(jù)庫(kù)造成很大的訪問(wèn)壓力,甚至是癱瘓。那如何解決呢?我們通常的做法有兩種:一種是數(shù)據(jù)緩存、一種是網(wǎng)頁(yè)靜態(tài)化。

2.Redis

redis是一款開源的Key-Value數(shù)據(jù)庫(kù),運(yùn)行在內(nèi)存中,由ANSI C編寫。企業(yè)開發(fā)通常采用Redis來(lái)實(shí)現(xiàn)緩存。同類的產(chǎn)品還有memcache 、memcached 、MongoDB等。

3.Jedis

Jedis是Redis官方推出的一款面向Java的客戶端,提供了很多接口供Java語(yǔ)言調(diào)用??梢栽赗edis官網(wǎng)下載,當(dāng)然還有一些開源愛(ài)好者提供的客戶端,如Jredis、SRP等等,推薦使用Jedis

4.Spring Data Redis

Spring-data-redis是spring大家族的一部分,提供了在srping應(yīng)用中通過(guò)簡(jiǎn)單的配置訪問(wèn)redis服務(wù),對(duì)reids底層開發(fā)包(Jedis,  JRedis, and RJC)進(jìn)行了高度封裝,RedisTemplate提供了redis各種操作、異常處理及序列化,支持發(fā)布訂閱,并對(duì)spring 3.1 cache進(jìn)行了實(shí)現(xiàn)。
spring-data-redis針對(duì)jedis提供了如下功能:

  • 1.連接池自動(dòng)管理,提供了一個(gè)高度封裝的“RedisTemplate”類

  • 2.針對(duì)jedis客戶端中大量api進(jìn)行了歸類封裝,將同一類型操作封裝為operation接口

  • ValueOperations:簡(jiǎn)單K-V操作

  • SetOperations:set類型數(shù)據(jù)操作

  • ZSetOperations:zset類型數(shù)據(jù)操作

  • HashOperations:針對(duì)map類型的數(shù)據(jù)操作

  • ListOperations:針對(duì)list類型的數(shù)據(jù)操作

5.Spring Data Redis實(shí)例

準(zhǔn)備工作

(1)構(gòu)建Maven工程  SpringDataRedisDemo
(2)引入Spring相關(guān)依賴、引入JUnit依賴   (內(nèi)容參加其它工程)
(3)引入Jedis和SpringDataRedis依賴
pom.xml

<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>com.ldc.org</groupId>
    <artifactId>SpringDataRedisDemo</artifactId>
    <version>0.0.1-SNAPSHOT</version>

    <!-- 集中定義依賴版本號(hào) -->
    <properties>
        <junit.version>4.12</junit.version>
        <spring.version>4.2.4.RELEASE</spring.version>
    </properties>

    <dependencies>
        <!-- Spring -->
        <dependency>
            <groupId>org.springframework</groupId>
            <artifactId>spring-context</artifactId>
            <version>${spring.version}</version>
        </dependency>
        <dependency>
            <groupId>org.springframework</groupId>
            <artifactId>spring-beans</artifactId>
            <version>${spring.version}</version>
        </dependency>
        <dependency>
            <groupId>org.springframework</groupId>
            <artifactId>spring-webmvc</artifactId>
            <version>${spring.version}</version>
        </dependency>
        <dependency>
            <groupId>org.springframework</groupId>
            <artifactId>spring-jdbc</artifactId>
            <version>${spring.version}</version>
        </dependency>
        <dependency>
            <groupId>org.springframework</groupId>
            <artifactId>spring-aspects</artifactId>
            <version>${spring.version}</version>
        </dependency>
        <dependency>
            <groupId>org.springframework</groupId>
            <artifactId>spring-jms</artifactId>
            <version>${spring.version}</version>
        </dependency>
        <dependency>
            <groupId>org.springframework</groupId>
            <artifactId>spring-context-support</artifactId>
            <version>${spring.version}</version>
        </dependency>
        <dependency>
            <groupId>org.springframework</groupId>
            <artifactId>spring-test</artifactId>
            <version>${spring.version}</version>
        </dependency>
        <dependency>
            <groupId>junit</groupId>
            <artifactId>junit</artifactId>
            <version>4.9</version>
        </dependency>

        <!-- 緩存 -->
        <dependency>
            <groupId>redis.clients</groupId>
            <artifactId>jedis</artifactId>
            <version>2.8.1</version>
        </dependency>
        <dependency>
            <groupId>org.springframework.data</groupId>
            <artifactId>spring-data-redis</artifactId>
            <version>1.7.2.RELEASE</version>
        </dependency>

    </dependencies>

</project>

(4)在src/main/resources下創(chuàng)建properties文件夾,建立redis-config.properties

redis.host=127.0.0.1 
redis.port=6379 
redis.pass= 
redis.database=0 
redis.maxIdle=300 
redis.maxWait=3000 
redis.testOnBorrow=true 

(5)在src/main/resources下創(chuàng)建spring文件夾 ,創(chuàng)建applicationContext-redis.xml

<?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:mvc="http://www.springframework.org/schema/mvc" 
  xmlns:cache="http://www.springframework.org/schema/cache"
  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   
            http://www.springframework.org/schema/mvc   
            http://www.springframework.org/schema/mvc/spring-mvc.xsd 
            http://www.springframework.org/schema/cache  
            http://www.springframework.org/schema/cache/spring-cache.xsd">  

  <!-- 引入redis的properties文件 -->
   <context:property-placeholder location="classpath*:properties/*.properties" />   

   <!-- redis 相關(guān)配置 --> 
   <bean id="poolConfig" class="redis.clients.jedis.JedisPoolConfig">  
     <property name="maxIdle" value="${redis.maxIdle}" />   
     <property name="maxWaitMillis" value="${redis.maxWait}" />
     <property name="testOnBorrow" value="${redis.testOnBorrow}" />
   </bean>  

   <bean id="JedisConnectionFactory" 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.RedisTemplate">  
        <property name="connectionFactory" ref="JedisConnectionFactory" />  
   </bean>  

</beans>  
  1. maxIdle :最大空閑數(shù)
  2. maxWaitMillis:連接時(shí)的最大等待毫秒數(shù)
  3. testOnBorrow:在提取一個(gè)jedis實(shí)例時(shí),是否提前進(jìn)行驗(yàn)證操作;如果為true,則得到的jedis實(shí)例均是可用的;

6.值類型操作

package test;

import org.junit.Test;
import org.junit.runner.RunWith;
import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.data.redis.core.RedisTemplate;
import org.springframework.test.context.ContextConfiguration;
import org.springframework.test.context.junit4.SpringJUnit4Cla***unner;

@RunWith(SpringJUnit4Cla***unner.class)
@ContextConfiguration(locations="classpath:spring/applicationContext-redis.xml")
public class TestValue {

    @Autowired
    private RedisTemplate redisTemplate;

    @Test
    public void setValue() {
        redisTemplate.boundValueOps("name").set("ldc");
    }

    @Test
    public void getValue() {
        String string=(String) redisTemplate.boundValueOps("name").get();
        System.out.println(string);
    }

    @Test
    public void deleteValue() {
        redisTemplate.delete("name");
    }

}

7. Set類型操作

package test;

import java.util.Set;

import org.junit.Test;
import org.junit.runner.RunWith;
import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.data.redis.core.RedisTemplate;
import org.springframework.test.context.ContextConfiguration;
import org.springframework.test.context.junit4.SpringJUnit4Cla***unner;

@RunWith(SpringJUnit4Cla***unner.class)
@ContextConfiguration(locations="classpath:spring/applicationContext-redis.xml")
public class TestSet {

    @Autowired
    private RedisTemplate redisTemplate;

    @Test
    public void setValue() {
        //存進(jìn)去和順序無(wú)關(guān)
        redisTemplate.boundSetOps("nameSet").add("曹操");
        redisTemplate.boundSetOps("nameSet").add("劉備");
        redisTemplate.boundSetOps("nameSet").add("孫權(quán)");
    }

    @Test
    public void getValue() {
        Set set=redisTemplate.boundSetOps("nameSet").members();
        System.out.println(set);
    }

    @Test
    public void removeValue() {
        //單獨(dú)的移除其中一個(gè)元素
        redisTemplate.boundSetOps("nameSet").remove("孫權(quán)");
    }

    @Test
    public void delete() {
        //移除全部
        redisTemplate.delete("nameSet");
    }

}

8.List類型操作

package test;

import java.util.List;
import java.util.Set;

import org.junit.Test;
import org.junit.runner.RunWith;
import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.data.redis.core.RedisTemplate;
import org.springframework.test.context.ContextConfiguration;
import org.springframework.test.context.junit4.SpringJUnit4Cla***unner;

@RunWith(SpringJUnit4Cla***unner.class)
@ContextConfiguration(locations="classpath:spring/applicationContext-redis.xml")
public class TestList {

    @Autowired
    private RedisTemplate redisTemplate;

    /**
     * 右壓棧
     */
    @Test
    public void setValue1() {
        redisTemplate.boundListOps("nameList1").rightPush("劉備");
        redisTemplate.boundListOps("nameList1").rightPush("關(guān)羽");
        redisTemplate.boundListOps("nameList1").rightPush("張飛");
    }

    /**
     * 顯示右壓棧的值
     */
    @Test
    public void getValue1() {
        List list=redisTemplate.boundListOps("nameList1").range(0, 10);
        System.out.println(list);
    }

    /**
     * 左壓棧
     */
    @Test
    public void setValue2() {
        redisTemplate.boundListOps("nameList2").leftPush("劉備");
        redisTemplate.boundListOps("nameList2").leftPush("關(guān)羽");
        redisTemplate.boundListOps("nameList2").leftPush("張飛");
    }

    /**
     * 顯示左壓棧的值
     */
    @Test
    public void getValue2() {
        List list=redisTemplate.boundListOps("nameList2").range(0, 10);
        System.out.println(list);
    }

    /**
     * 按照索引查詢
     */
    @Test
    public void searchByIndex() {
        String string=(String) redisTemplate.boundListOps("nameList2").index(1);
        System.out.println(string);
    }

    /**
     * 刪除其中一個(gè)元素
     */
    @Test
    public void removeValue() {
        //單獨(dú)的移除其中一個(gè)元素,第一個(gè)參數(shù)是移除的個(gè)數(shù),不是位置的下表
        redisTemplate.boundSetOps("nameList1").remove(1,"關(guān)羽");
    }

    /**
     * 刪除整個(gè)List集合
     */
    @Test
    public void delete() {
        //單獨(dú)的移除其中一個(gè)元素,第一個(gè)參數(shù)是移除的個(gè)數(shù),不是位置的下表
        redisTemplate.delete("nameList1");
    }

}

9.Hash類型操作

package test;

import java.util.List;
import java.util.Set;

import org.junit.Test;
import org.junit.runner.RunWith;
import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.data.redis.core.RedisTemplate;
import org.springframework.test.context.ContextConfiguration;
import org.springframework.test.context.junit4.SpringJUnit4Cla***unner;

@RunWith(SpringJUnit4Cla***unner.class)
@ContextConfiguration(locations="classpath:spring/applicationContext-redis.xml")
public class TestHash {

    @Autowired
    private RedisTemplate redisTemplate;

    /**
     * 存值
     */
    @Test
    public void setValue() {
        redisTemplate.boundHashOps("nameHash").put("a", "唐僧");
        redisTemplate.boundHashOps("nameHash").put("b", "悟空");
        redisTemplate.boundHashOps("nameHash").put("c", "八戒");
        redisTemplate.boundHashOps("nameHash").put("d", "沙僧");
    }

    /**
     * 取所有key
     */
    @Test
    public void getKey() {
        Set keys=redisTemplate.boundHashOps("nameHash").keys();
        System.out.println(keys);
    }

    /**
     * 取所有value
     */
    @Test
    public void getValue() {
        List list=redisTemplate.boundHashOps("nameHash").values();
        System.out.println(list);
    }

    /**
     * 根據(jù)key取值
     */
    @Test
    public void searchValueByKey() {
        String string=(String) redisTemplate.boundHashOps("nameHash").get("b");
        System.out.println(string);
    }

    /**
     * 移除某個(gè)小key的值
     */
    @Test
    public void removeValueByKey() {
        redisTemplate.boundHashOps("nameHash").delete("c");
    }

    /**
     * 刪除其中一個(gè)元素
     */
    @Test
    public void removeValue() {
        //單獨(dú)的移除其中一個(gè)元素,第一個(gè)參數(shù)是移除的個(gè)數(shù),不是位置的下表
        redisTemplate.boundSetOps("nameList1").remove(1,"關(guān)羽");
    }

    /**
     * 刪除整個(gè)List集合
     */
    @Test
    public void delete() {
        //單獨(dú)的移除其中一個(gè)元素,第一個(gè)參數(shù)是移除的個(gè)數(shù),不是位置的下表
        redisTemplate.delete("nameList1");
    }

}

10.項(xiàng)目的目錄結(jié)構(gòu)

Spring Data Redis的使用方法
以上就是Spring Data Redis的使用方法,詳細(xì)使用情況還得要大家自己使用過(guò)才能知道具體要領(lǐng)。如果想閱讀更多相關(guān)內(nèi)容的文章,歡迎關(guān)注億速云行業(yè)資訊頻道!

向AI問(wèn)一下細(xì)節(jié)

免責(zé)聲明:本站發(fā)布的內(nèi)容(圖片、視頻和文字)以原創(chuàng)、轉(zhuǎn)載和分享為主,文章觀點(diǎn)不代表本網(wǎng)站立場(chǎng),如果涉及侵權(quán)請(qǐng)聯(lián)系站長(zhǎng)郵箱:is@yisu.com進(jìn)行舉報(bào),并提供相關(guān)證據(jù),一經(jīng)查實(shí),將立刻刪除涉嫌侵權(quán)內(nèi)容。

AI