主頁(yè) > 知識(shí)庫(kù) > redis緩存的簡(jiǎn)單操作(get、put)

redis緩存的簡(jiǎn)單操作(get、put)

熱門標(biāo)簽:西藏教育智能外呼系統(tǒng)價(jià)格 太原營(yíng)銷外呼系統(tǒng) 地圖標(biāo)注費(fèi)用 小紅書怎么地圖標(biāo)注店 最簡(jiǎn)單的百度地圖標(biāo)注 地圖標(biāo)注如何即時(shí)生效 竹間科技AI電銷機(jī)器人 百度商家地圖標(biāo)注怎么做 玄武湖地圖標(biāo)注

本文介紹簡(jiǎn)單的redis緩存操作,包括引入jedisjar包、配置redis、RedisDao需要的一些工具、向redis中放數(shù)據(jù)(put)、從redis中取數(shù)據(jù)(get)、訪問redis時(shí)的邏輯

一、引入jedis jar包

!-- java訪問redis的jar包jedis -->
dependency>
 groupId>redis.clients/groupId>
 artifactId>jedis/artifactId>
 version>2.7.3/version>
/dependency>
!-- protostuff序列化依賴 -->
dependency>
 groupId>com.dyuproject.protostuff/groupId>
 artifactId>protostuff-core/artifactId>
 version>1.0.8/version>
/dependency>
dependency>
 groupId>com.dyuproject.protostuff/groupId>
 artifactId>protostuff-runtime/artifactId>
 version>1.0.8/version>
/dependency>

注意:為什么要引入序列化依賴jar包protostuff?

1)從redis中取出的數(shù)據(jù)是序列化的,我們需要使用protostuff的反序列化操作,講序列化對(duì)象轉(zhuǎn)化成我們的需要的對(duì)象

2)向redis中放入數(shù)據(jù)時(shí),我們需要先使用protostuff的序列化操作,將對(duì)象轉(zhuǎn)化成序列化對(duì)象,才能放入redis

二、在spring配置文件中注入redis,放入spring的ioc容器

!-- 注入redis dao -->
bean id="redisDao" class="org.demo.dao.cache.RedisDao">
  constructor-arg index="0" value="localhost">/constructor-arg>
  constructor-arg index="1" value="6379">/constructor-arg>
/bean>

注意:

1)這里的RedisDao路徑是我的包路徑,注意你在配置的時(shí)候應(yīng)使用你自己的路徑

2)這里使用本地的redis服務(wù)localhost

3)redis服務(wù)的默認(rèn)端口是6379

三、RedisDao需要的一些工具

//redis連接池
 private final JedisPool jedisPool;//根據(jù)對(duì)象的字節(jié)碼文件,生成空對(duì)象
 private RuntimeSchemaObject> schema = RuntimeSchema.createFrom(Object.class); //Object.class:獲取對(duì)象的字節(jié)碼
 
 public RedisDao(String ip, int port){
  jedisPool = new JedisPool(ip, port);
 }

注意:

1)RedisDao需要redis的連接池JedisPool,就好比JDBC的數(shù)據(jù)庫(kù)連接池一樣。我們?cè)赗edisDao的構(gòu)造器中會(huì)初始化這個(gè)連接池

2)我們需要一個(gè)可以根據(jù)對(duì)象的字節(jié)碼文件生成空對(duì)象的工具 RuntimeSchema。你要使用什么對(duì)象,你就在Object的位置寫入你的對(duì)象(Object.class:獲取對(duì)象的字節(jié)碼文件)

3)連接池JedisPool的初始化需要兩個(gè)參數(shù):ip、port

四、向redis中放數(shù)據(jù)(put)

//將對(duì)象緩存到redis
 public String putObject(Object obj){
  //緩存邏輯:Object --> 序列化 --> byte[] --> 緩存到redis
  try {
   Jedis jedis = jedisPool.getResource(); //獲取redis的連接對(duì)象,相當(dāng)于JDBC的connection
   try{
    String key = "Object:"+obj.getId();
    //進(jìn)行序列化
    byte[] bytes = ProtostuffIOUtil.toByteArray(seckill, schema, 
      LinkedBuffer.allocate(LinkedBuffer.DEFAULT_BUFFER_SIZE)); //如果對(duì)象過(guò)大,會(huì)進(jìn)行緩沖
    //開始緩存
    int timeout = 60*60; //設(shè)置超時(shí)時(shí)間 一小時(shí),通過(guò)超時(shí)維護(hù)一致性
    String result = jedis.setex(key.getBytes(), timeout, bytes);
    return result;
   }finally{
    jedis.close();
   }
  } catch (Exception e) {
   e.printStack();
  }
  return null;
 }

注意:

1)緩存邏輯:Object --> 序列化操作 --> byte[] --> 寫入redis。也就是先把對(duì)象序列化,再寫入redis!

2)我們?cè)诓僮鱮edis之前必須先拿到redis的連接對(duì)象,從連接池拿

五、從redis中取數(shù)據(jù)(get)

 //從redis緩存中查詢
 public Object getObject(long id){
  //redis操作邏輯
  try {
   Jedis jedis = jedisPool.getResource(); //緩存連接對(duì)象,相當(dāng)于數(shù)據(jù)庫(kù)連接對(duì)象connection
   try {
    String key = "Object:"+id;
    //實(shí)體對(duì)象并沒有實(shí)現(xiàn)內(nèi)部序列化操作
    //緩存邏輯:getByte[] --> 反序列化 --> Object
    byte[] bytes = jedis.get(key.getBytes()); //從jedis中獲取目標(biāo)對(duì)象的序列化對(duì)象數(shù)組
    if(bytes != null){
     //反序列化邏輯
     Object obj = schema.newMessage(); //通過(guò)schema生成一個(gè)新的空對(duì)象
     ProtostuffIOUtil.mergeFrom(bytes, obj, schema); //進(jìn)行反序列化操作
     return obj;
    }
    
   } finally {
    jedis.close();
   }
    
  } catch (Exception e) {
        e.printStack();
  }
  return null;
 }

注意:

1)取數(shù)據(jù)邏輯:redis --> 得到byte[] --> 反序列化 --> Object

2)我們?cè)诜艛?shù)據(jù)的時(shí)候,是以鍵值對(duì)的形式:id --> obj。我們?cè)谌?shù)據(jù)的時(shí)候,就是根據(jù)id來(lái)取的

六、查詢r(jià)edis時(shí)的邏輯

偽代碼:

get form redis_cache    //首先查詢r(jià)edis
if null       //如果沒有
 get from db     //再?gòu)臄?shù)據(jù)庫(kù)db查詢
 if null      //如果仍然沒有
  return null    //那么返回空
 else       //否則
  put into redis_cache  //現(xiàn)將數(shù)據(jù)放入redis
  return obj    //再放回?cái)?shù)據(jù)
else        //如果從redis中查詢到了
 return obj     //那么直接返回?cái)?shù)據(jù)

以上就是本文的全部?jī)?nèi)容,希望對(duì)大家的學(xué)習(xí)有所幫助,也希望大家多多支持腳本之家。

您可能感興趣的文章:
  • spring結(jié)合redis如何實(shí)現(xiàn)數(shù)據(jù)的緩存
  • Redis整合Spring結(jié)合使用緩存實(shí)例
  • php操作redis緩存方法分享
  • 圖文詳解Windows下使用Redis緩存工具的方法
  • Python的Flask框架使用Redis做數(shù)據(jù)緩存的配置方法
  • PHP使用redis實(shí)現(xiàn)統(tǒng)計(jì)緩存mysql壓力的方法
  • Spring Boot 基于注解的 Redis 緩存使用詳解
  • Nginx配置srcache_nginx模塊搭配Redis建立緩存系統(tǒng)
  • CI框架中redis緩存相關(guān)操作文件示例代碼
  • Redis緩存詳解

標(biāo)簽:廣東 景德鎮(zhèn) 唐山 澳門 揚(yáng)州 贛州 香港 林芝

巨人網(wǎng)絡(luò)通訊聲明:本文標(biāo)題《redis緩存的簡(jiǎn)單操作(get、put)》,本文關(guān)鍵詞  redis,緩存,的,簡(jiǎn)單,操作,;如發(fā)現(xiàn)本文內(nèi)容存在版權(quán)問題,煩請(qǐng)?zhí)峁┫嚓P(guān)信息告之我們,我們將及時(shí)溝通與處理。本站內(nèi)容系統(tǒng)采集于網(wǎng)絡(luò),涉及言論、版權(quán)與本站無(wú)關(guān)。
  • 相關(guān)文章
  • 下面列出與本文章《redis緩存的簡(jiǎn)單操作(get、put)》相關(guān)的同類信息!
  • 本頁(yè)收集關(guān)于redis緩存的簡(jiǎn)單操作(get、put)的相關(guān)信息資訊供網(wǎng)民參考!
  • 推薦文章