亚洲激情专区-91九色丨porny丨老师-久久久久久久女国产乱让韩-国产精品午夜小视频观看

溫馨提示×

溫馨提示×

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

密碼登錄×
登錄注冊×
其他方式登錄
點擊 登錄注冊 即表示同意《億速云用戶服務條款》

Spring Data Redis的使用方法

發布時間:2020-06-03 14:29:14 來源:億速云 閱讀:273 作者:Leah 欄目:編程語言

這篇文章給大家分享的是有關Spring Data Redis的使用方法。小編覺得挺實用的,因此分享給大家學習。如下資料是關于Spring Data Redis的實現步驟。

1.項目常見問題思考

對于電商系統的廣告后臺管理和廣告前臺展示,首頁每天有大量的人訪問,對數據庫造成很大的訪問壓力,甚至是癱瘓。那如何解決呢?我們通常的做法有兩種:一種是數據緩存、一種是網頁靜態化。

2.Redis

redis是一款開源的Key-Value數據庫,運行在內存中,由ANSI C編寫。企業開發通常采用Redis來實現緩存。同類的產品還有memcache 、memcached 、MongoDB等。

3.Jedis

Jedis是Redis官方推出的一款面向Java的客戶端,提供了很多接口供Java語言調用。可以在Redis官網下載,當然還有一些開源愛好者提供的客戶端,如Jredis、SRP等等,推薦使用Jedis

4.Spring Data Redis

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

  • 1.連接池自動管理,提供了一個高度封裝的“RedisTemplate”類

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

  • ValueOperations:簡單K-V操作

  • SetOperations:set類型數據操作

  • ZSetOperations:zset類型數據操作

  • HashOperations:針對map類型的數據操作

  • ListOperations:針對list類型的數據操作

5.Spring Data Redis實例

準備工作

(1)構建Maven工程  SpringDataRedisDemo
(2)引入Spring相關依賴、引入JUnit依賴   (內容參加其它工程)
(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>

    <!-- 集中定義依賴版本號 -->
    <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下創建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下創建spring文件夾 ,創建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 相關配置 --> 
   <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 :最大空閑數
  2. maxWaitMillis:連接時的最大等待毫秒數
  3. testOnBorrow:在提取一個jedis實例時,是否提前進行驗證操作;如果為true,則得到的jedis實例均是可用的;

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() {
        //存進去和順序無關
        redisTemplate.boundSetOps("nameSet").add("曹操");
        redisTemplate.boundSetOps("nameSet").add("劉備");
        redisTemplate.boundSetOps("nameSet").add("孫權");
    }

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

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

    @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("關羽");
        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("關羽");
        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);
    }

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

    /**
     * 刪除整個List集合
     */
    @Test
    public void delete() {
        //單獨的移除其中一個元素,第一個參數是移除的個數,不是位置的下表
        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);
    }

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

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

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

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

}

10.項目的目錄結構

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

向AI問一下細節

免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。

AI

治县。| 友谊县| 绵阳市| 迭部县| 海城市| 永泰县| 苏尼特左旗| 周至县| 连南| 山丹县| 南木林县| 剑川县| 河源市| 巍山| 金堂县| 连城县| 白朗县| 库伦旗| 珲春市| 库车县| 卓资县| 涟水县| 南靖县| 屯昌县| 锦屏县| 桃园县| 沙田区| 平武县| 隆回县| 固安县| 咸阳市| 永州市| 林甸县| 营口市| 会理县| 茶陵县| 永清县| 东兰县| 和龙市| 南雄市| 贡觉县|