创建生菜StatefulRedisConnection以将字符串存储为键,将字节数组存储为值 [英] Create Lettuce StatefulRedisConnection for storing string as keys and byte array as value

查看:204
本文介绍了创建生菜StatefulRedisConnection以将字符串存储为键,将字节数组存储为值的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

我有一个Spring boot应用程序,该应用程序连接到AWS上的Redis集群.我正在尝试生菜,并想创建一个StatefulRedisConnection来将键存储为字符串,但将值存储为字节数组.我尝试使用内置的ByteArrayCodec,但是它将键和值都作为字节数组.

I have a Spring boot application which connects to a Redis cluster on AWS. I was trying out Lettuce, and want to create a StatefulRedisConnection for storing keys as string, but values as byte array. I tried using the built-in ByteArrayCodec, but it takes both the key and value as a byte array.

我是Lettuce的新手,所以不确定是否需要编写自定义编解码器.如果是这样,我该怎么写?会不会有性能问题?还是我走错了路?

I'm new to Lettuce, so I'm not sure whether I need to write a custom codec. If so, how would I write it? And would there be any performance issues? Or am I going down the wrong path?

推荐答案

下面的代码将允许您将字符串键和字节数组作为值.

Below code will allow you to have string key and byte array as value.

public class StringByteCodec implements RedisCodec<String, byte[]> {

    public static final StringByteCodec INSTANCE = new StringByteCodec();
    private static final byte[] EMPTY = new byte[0];
    private final Charset charset = Charset.forName("UTF-8");

    @Override
    public String decodeKey(final ByteBuffer bytes) {
        return charset.decode(bytes).toString();
    }

    @Override
    public byte[] decodeValue(final ByteBuffer bytes) {
        return getBytes(bytes);
    }

    @Override
    public ByteBuffer encodeKey(final String key) {
        return charset.encode(key);
    }

    @Override
    public ByteBuffer encodeValue(final byte[] value) {
        if (value == null) {
            return ByteBuffer.wrap(EMPTY);
        }

        return ByteBuffer.wrap(value);
    }

    private static byte[] getBytes(final ByteBuffer buffer) {
        final byte[] b = new byte[buffer.remaining()];
        buffer.get(b);
        return b;
    }

}

这篇关于创建生菜StatefulRedisConnection以将字符串存储为键,将字节数组存储为值的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持IT屋!

查看全文
登录 关闭
扫码关注1秒登录
发送“验证码”获取 | 15天全站免登陆