Redis缓存对象的实现原理

		

      截止到目前为止,在redis官方的文档和实现里面并没有针对object 对象缓存的方法,然而,在我们的实际开发需要中,在很多时候我们是需要进行对象缓存的,并且可以正确的读取出来! 在笔者正在开发的红包项目中,针对每天红包就需要使用的对象缓存,并可以随时修改缓存对象中的红包数量值等信息!那么具体实现呢?

       在官方提供的方法中,我们找到了有这么一个操作方法: 

jedis.set(byte[], byte[])

看这个方法,是进行字节码操作的,这让我们很容易想到在一些远程方法调用中,我们传递对象同样传递的是字节码,是不是可以参考呢?

首先,既然需要对对象进行字节操作,即可写和可读的操作,为了保证这个原则,那么缓存对象需要实现Serializable 接口,进行序列化和反序列化!

涉及到的知识点:

1: Serializable (接口,实现此接口的对象可以进行序列化)

2: ByteArrayOutputStream,ObjectOutputStream 对象转换为字节码输出流

3: ByteArrayInputStream ,ObjectInputStream 字节码转换为对象的输入流

了解了如上三点知识后,我们就可以对对象进行缓存操作了!

示例代码如下,包括了对象缓存和List 对象数组缓存,需要声明的是,放入list数组中的对象同样需要实现Serializable 接口:

public class ObjectsTranscoder extends SerializeTranscoder {
@SuppressWarnings("unchecked")
@Override

   
   
   
   
  • 1
  • 2

public byte[] serialize(Object value) {

if (value == null) {

throw new NullPointerException(“Can’t serialize null”);

}

byte[] result = null;

ByteArrayOutputStream bos = null;

ObjectOutputStream os = null;

try {

bos = new ByteArrayOutputStream();

os = new ObjectOutputStream(bos);

os.writeObject(value);

os.close();

bos.close();

result = bos.toByteArray();

} catch (IOException e) {

throw new IllegalArgumentException(“Non-serializable object”, e);

} finally {

close(os);

close(bos);

}

return result;

}

@SuppressWarnings("unchecked")
@Override

   
   
   
   
  • 1
  • 2

public Object deserialize(byte[] in) {
Object result = null;
ByteArrayInputStream bis = null;
ObjectInputStream is = null;
try {
if (in != null) {
bis = new ByteArrayInputStream(in);
is = new ObjectInputStream(bis);
result = is.readObject();
is.close();
bis.close();
}
} catch (IOException e) {
logger.error(String.format(“Caught IOException decoding %d bytes of data”,
in == null ? 0 : in.length) + e);
} catch (ClassNotFoundException e) {
logger.error(String.format(“Caught CNFE decoding %d bytes of data”,
in == null ? 0 : in.length) + e);
} finally {
close(is);
close(bis);
}
return result;
}
}

对象的转换示例如上代码:

数组缓存代码:

public class ListTranscoder<M extends Serializable> extends SerializeTranscoder {
@SuppressWarnings("unchecked")
public List<M> deserialize(byte[] in) {
    List<M> list = new ArrayList<>();
    ByteArrayInputStream bis = null;
    ObjectInputStream is = null;
    try {
        if (in != null) {
            bis = new ByteArrayInputStream(in);
            is = new ObjectInputStream(bis);
            while (true) {
                M m = (M)is.readObject();
                if (m == null) {
                    break;
                }
            list.add(m);

        }
        is.close();
        bis.close();
    }
} <span style="color:#000080;"><strong>catch </strong></span>(IOException e) {
    <span style="color:#660e7a;"><em>logger</em></span>.error(String.<span style="font-style:italic;">format</span>(<span style="color:#008000;"><strong>"Caught IOException decoding %d bytes of data"</strong></span>,
            in == <span style="color:#000080;"><strong>null </strong></span>? <span style="color:#0000ff;">0 </span>: in.<span style="color:#660e7a;"><strong>length</strong></span>) + e);
} <span style="color:#000080;"><strong>catch </strong></span>(ClassNotFoundException e) {
    <span style="color:#660e7a;"><em>logger</em></span>.error(String.<span style="font-style:italic;">format</span>(<span style="color:#008000;"><strong>"Caught CNFE decoding %d bytes of data"</strong></span>,
            in == <span style="color:#000080;"><strong>null </strong></span>? <span style="color:#0000ff;">0 </span>: in.<span style="color:#660e7a;"><strong>length</strong></span>) + e);
}  <span style="color:#000080;"><strong>finally </strong></span>{
    close(is);
    close(bis);
}

<span style="color:#000080;"><strong>return  </strong></span>list;

}

@SuppressWarnings(“unchecked”)
@Override

  • 1
  • 2
  • 3
  • 4
  • 5
  • 6
  • 7
  • 8
  • 9
  • 10
  • 11
  • 12
  • 13
  • 14
  • 15
  • 16
  • 17
  • 18
  • 19
  • 20
  • 21
  • 22
  • 23
  • 24
  • 25
  • 26
  • 27
  • 28
  • 29
  • 30
  • 31
  • 32
  • 33
  • 34
  • 35
  • 36
  • 37
  • 38

public byte[] serialize(Object value) {

if (value == null)

throw new NullPointerException(“Can’t serialize null”);

    List<M> values = (List<M>) value;

    byte[] results = null;
    ByteArrayOutputStream bos = null;
    ObjectOutputStream os = null;

    try {
        bos = new ByteArrayOutputStream();
        os = new ObjectOutputStream(bos);
        for (M m : values) {
            os.writeObject(m);
        }

        // os.writeObject(null);

   
   
   
   
  • 1
  • 2
  • 3
  • 4
  • 5
  • 6
  • 7
  • 8
  • 9
  • 10
  • 11
  • 12
  • 13
  • 14

os.close();
bos.close();
results = bos.toByteArray();
} catch (IOException e) {
throw new IllegalArgumentException(“Non-serializable object”, e);
} finally {
close(os);
close(bos);
}

    return results;
}

   
   
   
   
  • 1
  • 2

}

通过以上操作即可以实现对象的缓存和读取了!

虽然自己实现了,还是希望redis官方尽快提供对象的缓存操作吧!



        
阅读更多
发表评论
还能输入1000个字符

memcached&redis等分布式缓存的实现原理

shaochenshuo shaochenshuo

01-21 4568

memcached&redis等分布式缓存的实现原理

DBAplus社群(陈科)
· 2015-12-13 07:00

12月9日,河狸家资深架构师…









redis缓存java对象




u012572955

u012572955




11-09




5668




Redis入门 – Jedis存储Java对象 -
(Java序列化为byte数组方式)

 

原文地址:http://alanland.iteye.com/admin/blogs/16…







				

然后在配置生成连接池对象需要的参数咯
(1)你可以写一个参数实体类,再写一个bean注入到spring

@Component
@Co…









Java在redis中进行对象的缓存




qq_20989105

qq_20989105




01-26




2200




Java在redis中进行对象的缓存一般有两种方法,这里介绍序列化的方法,个人感觉比较方便,不需要转来转去。
1、首先,在存储的对象上实现序列化的接口

package com.cy.examp…









Redis缓存Object,List对象




leledodo

leledodo




10-14




4281




到目前为止(jedis-2.2.0.jar),在Jedis中其实并没有提供这样的API对对象,或者是List对象的直接缓存,即并没有如下类似的API

jedis.set(String key, Ob…









Redis分布式锁的原理、作用及实现(简单易懂)




IRhythm

IRhythm




08-31




32




转载地址:https://blog.csdn.net/l_bestcoder/article/details/79336986;(注:做了一些修改)。

一、什么是分布式锁?

要介绍分布式锁,首先要…







scrolling="no">





基于redis的缓存机制的思考和优化




qq_18860653

qq_18860653




02-06




1.7万




相对我们对于redis的使用场景都已经想当的熟悉。对于大量的数据,为了缓解接口(数据库)的压力,我们对查询的结果做了缓存的策略。一开始我们的思路是这样的。
1.执行查询
2.缓存中存在数据 -> 查询…









node使用redis缓存




a5799694

a5799694




12-14




1056




最近想知道node相关的缓存,就找到了redis
然后自己实现了node api数据的缓存
我先写了个模块,当做redis的链接对象的工厂
新建了redis_factory.js
var re…









redis 和Mysql 的一些 区别




qq_28018283

qq_28018283




05-24




1.9万




说 Redis 的缓存机制实现之前,我想先回顾一下 mysql

mysql 存储在哪儿呢?

以 windows 为例,mysql 的表和数据,存储在data 目录下frm ibd 后缀的文件中…









redis 缓存失效原理




u013530955

u013530955




07-05




2976




原文出处:点击打开链接

对于缓存失效,不同的缓存有不同的处理机制,可以说是大同中有小异,作者通过对Redis 文档与相关源码的仔细研读,为大家详细剖析了 Redis 的缓存过期/失效机制相关的技术…






博主推荐







换一批


PayneQin
PayneQin

关注 228篇文章

Sam哥哥
Sam哥哥

关注 173篇文章

Evankaka
Evankaka

关注 285篇文章



        

没有更多推荐了,返回首页

你可能感兴趣的:(Redis缓存对象的实现原理)